Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 4d1c326

Browse files
authored
Merge pull request #149 from dshanske/interested
Replace Tracking with Interested
2 parents 5008474 + b439d17 commit 4d1c326

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ The Webmention and Pingback logos are made by [Aaron Parecki](http://aaronpareck
6969
Project actively developed on Github at [pfefferle/wordpress-semantic-linkbacks](https://github.com/pfefferle/wordpress-semantic-linkbacks). Please file support issues there.
7070

7171
### 3.7.3 ###
72+
* Replace tracking with interested property as noted on https://indieweb.org/rsvp
7273
* Remove `h-as` properties
7374
* Remove hard-coded microformats2 properties from facepile and move them to being generated from comment_class
7475
* Remove unused properties

includes/class-linkbacks-handler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public static function get_comment_type_excerpts() {
223223
// translators: Name verb on domain
224224
'rsvp:invited' => __( '%1$s is <strong>invited</strong>.', 'semantic-linkbacks' ),
225225
// translators: Name verb on domain
226-
'rsvp:tracking' => __( '%1$s <strong>tracks</strong> this event.', 'semantic-linkbacks' ),
226+
'rsvp:interested' => __( '%1$s is <strong>interested</strong> in this event.', 'semantic-linkbacks' ),
227227
);
228228

229229
return $strings;
@@ -249,7 +249,7 @@ public static function get_comment_type_strings() {
249249
'rsvp:no' => __( 'RSVP', 'semantic-linkbacks' ),
250250
'rsvp:invited' => __( 'RSVP', 'semantic-linkbacks' ),
251251
'rsvp:maybe' => __( 'RSVP', 'semantic-linkbacks' ),
252-
'rsvp:tracking' => __( 'RSVP', 'semantic-linkbacks' ),
252+
'rsvp:interested' => __( 'RSVP', 'semantic-linkbacks' ),
253253
);
254254

255255
return $strings;
@@ -595,7 +595,7 @@ public static function comment_class( $classes, $class, $comment_id, $post_id )
595595
'rsvp:no' => array( 'u-rsvp' ),
596596
'rsvp:maybe' => array( 'u-rsvp' ),
597597
'rsvp:invited' => array( 'u-rsvp' ),
598-
'rsvp:tracking' => array( 'u-rsvp' ),
598+
'rsvp:interested' => array( 'u-rsvp' ),
599599
);
600600

601601
$semantic_linkbacks_type = self::get_type( $comment );

readme.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ The Webmention and Pingback logos are made by [Aaron Parecki](http://aaronpareck
6969
Project actively developed on Github at [pfefferle/wordpress-semantic-linkbacks](https://github.com/pfefferle/wordpress-semantic-linkbacks). Please file support issues there.
7070

7171
= 3.7.3 =
72+
* Replace tracking with interested property as noted on https://indieweb.org/rsvp
7273
* Remove `h-as` properties
7374
* Remove hard-coded microformats2 properties from facepile and move them to being generated from comment_class
7475
* Remove unused properties

0 commit comments

Comments
 (0)