Changeset 12586 for trunk/src/bp-activity/actions/feeds.php
- Timestamp:
- 03/28/2020 01:31:24 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/actions/feeds.php
r11885 r12586 25 25 'id' => 'sitewide', 26 26 27 /* translators: Sitewide activity RSS title - "[Site Name] | Site Wide Activity"*/27 /* translators: %s Site Name */ 28 28 'title' => sprintf( __( '%s | Site-Wide Activity', 'buddypress' ), bp_get_site_name() ), 29 30 29 'link' => bp_get_activity_directory_permalink(), 31 30 'description' => __( 'Activity feed for the entire site.', 'buddypress' ), … … 51 50 'id' => 'personal', 52 51 53 /* translators: Personal activity RSS title - "[Site Name] | [User Display Name] | Activity" */ 54 'title' => sprintf( __( '%1$s | %2$s | Activity', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ), 52 /* translators: 1: Site Name. 2: User Display Name. */ 53 'title' => sprintf( _x( '%1$s | %2$s | Activity', 'Personal activity feed title', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ), 54 'link' => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() ), 55 55 56 'link' => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() ),56 /* translators: %s: User Display Name */ 57 57 'description' => sprintf( __( 'Activity feed for %s.', 'buddypress' ), bp_get_displayed_user_fullname() ), 58 58 'activity_args' => 'user_id=' . bp_displayed_user_id() … … 77 77 'id' => 'friends', 78 78 79 /* translators: Friends activity RSS title - "[Site Name] | [User Display Name] | Friends Activity"*/79 /* translators: 1: Site Name 2: User Display Name */ 80 80 'title' => sprintf( __( '%1$s | %2$s | Friends Activity', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ), 81 'link' => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() . '/' . bp_get_friends_slug() ), 81 82 82 'link' => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() . '/' . bp_get_friends_slug() ),83 /* translators: %s: User Display Name */ 83 84 'description' => sprintf( __( "Activity feed for %s's friends.", 'buddypress' ), bp_get_displayed_user_fullname() ), 84 85 'activity_args' => 'scope=friends' … … 107 108 'id' => 'mygroups', 108 109 109 /* translators: Member groups activity RSS title - "[Site Name] | [User Display Name] | Groups Activity"*/110 /* translators: 1: Site Name 2: User Display Name */ 110 111 'title' => sprintf( __( '%1$s | %2$s | Group Activity', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ), 112 'link' => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() . '/' . bp_get_groups_slug() ), 111 113 112 'link' => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() . '/' . bp_get_groups_slug() ),114 /* translators: %s: User Display Name */ 113 115 'description' => sprintf( __( "Public group activity feed of which %s is a member.", 'buddypress' ), bp_get_displayed_user_fullname() ), 114 116 'activity_args' => array( … … 141 143 'id' => 'mentions', 142 144 143 /* translators: User mentions activity RSS title - "[Site Name] | [User Display Name] | Mentions"*/145 /* translators: 1: Site Name 2: User Display Name */ 144 146 'title' => sprintf( __( '%1$s | %2$s | Mentions', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ), 147 'link' => bp_displayed_user_domain() . bp_get_activity_slug() . '/mentions/', 145 148 146 'link' => bp_displayed_user_domain() . bp_get_activity_slug() . '/mentions/',149 /* translators: %s: User Display Name */ 147 150 'description' => sprintf( __( "Activity feed mentioning %s.", 'buddypress' ), bp_get_displayed_user_fullname() ), 148 151 'activity_args' => array( … … 173 176 'id' => 'favorites', 174 177 175 /* translators: User activity favorites RSS title - "[Site Name] | [User Display Name] | Favorites"*/178 /* translators: 1: Site Name 2: User Display Name */ 176 179 'title' => sprintf( __( '%1$s | %2$s | Favorites', 'buddypress' ), bp_get_site_name(), bp_get_displayed_user_fullname() ), 180 'link' => bp_displayed_user_domain() . bp_get_activity_slug() . '/favorites/', 177 181 178 'link' => bp_displayed_user_domain() . bp_get_activity_slug() . '/favorites/',182 /* translators: %s: User Display Name */ 179 183 'description' => sprintf( __( "Activity feed of %s's favorites.", 'buddypress' ), bp_get_displayed_user_fullname() ), 180 184 'activity_args' => 'include=' . $fav_ids
Note: See TracChangeset
for help on using the changeset viewer.