Changeset 55942 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 06/19/2023 06:26:01 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r55870 r55942 3097 3097 3098 3098 $defaults = array( 3099 /* translators: Separator between blogname and feed type in feed links. */3099 /* translators: Separator between site name and feed type in feed links. */ 3100 3100 'separator' => _x( '»', 'feed link' ), 3101 /* translators: 1: Blogtitle, 2: Separator (raquo). */3101 /* translators: 1: Site title, 2: Separator (raquo). */ 3102 3102 'feedtitle' => __( '%1$s %2$s Feed' ), 3103 /* translators: 1: Blogtitle, 2: Separator (raquo). */3103 /* translators: 1: Site title, 2: Separator (raquo). */ 3104 3104 'comstitle' => __( '%1$s %2$s Comments Feed' ), 3105 3105 ); … … 3149 3149 function feed_links_extra( $args = array() ) { 3150 3150 $defaults = array( 3151 /* translators: Separator between blogname and feed type in feed links. */3151 /* translators: Separator between site name and feed type in feed links. */ 3152 3152 'separator' => _x( '»', 'feed link' ), 3153 /* translators: 1: Blogname, 2: Separator (raquo), 3: Post title. */3153 /* translators: 1: Site name, 2: Separator (raquo), 3: Post title. */ 3154 3154 'singletitle' => __( '%1$s %2$s %3$s Comments Feed' ), 3155 /* translators: 1: Blogname, 2: Separator (raquo), 3: Category name. */3155 /* translators: 1: Site name, 2: Separator (raquo), 3: Category name. */ 3156 3156 'cattitle' => __( '%1$s %2$s %3$s Category Feed' ), 3157 /* translators: 1: Blogname, 2: Separator (raquo), 3: Tag name. */3157 /* translators: 1: Site name, 2: Separator (raquo), 3: Tag name. */ 3158 3158 'tagtitle' => __( '%1$s %2$s %3$s Tag Feed' ), 3159 /* translators: 1: Blogname, 2: Separator (raquo), 3: Term name, 4: Taxonomy singular name. */3159 /* translators: 1: Site name, 2: Separator (raquo), 3: Term name, 4: Taxonomy singular name. */ 3160 3160 'taxtitle' => __( '%1$s %2$s %3$s %4$s Feed' ), 3161 /* translators: 1: Blogname, 2: Separator (raquo), 3: Author name. */3161 /* translators: 1: Site name, 2: Separator (raquo), 3: Author name. */ 3162 3162 'authortitle' => __( '%1$s %2$s Posts by %3$s Feed' ), 3163 /* translators: 1: Blogname, 2: Separator (raquo), 3: Search query. */3163 /* translators: 1: Site name, 2: Separator (raquo), 3: Search query. */ 3164 3164 'searchtitle' => __( '%1$s %2$s Search Results for “%3$s” Feed' ), 3165 /* translators: 1: Blogname, 2: Separator (raquo), 3: Post type name. */3165 /* translators: 1: Site name, 2: Separator (raquo), 3: Post type name. */ 3166 3166 'posttypetitle' => __( '%1$s %2$s %3$s Feed' ), 3167 3167 );
Note: See TracChangeset
for help on using the changeset viewer.