Make WordPress Core


Ignore:
Timestamp:
06/19/2023 06:26:01 PM (20 months ago)
Author:
johnbillion
Message:

General: Replace some instances of "blog" with "site" in documentation, translator comments, and user-facing text strings.

This is not an exhaustive change, but it gets us closer to using "site" in place of "blog" in as many places as possible.

Props NekoJonez, audrasjb, oglekler

Fixes #58117

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/general-template.php

    r55870 r55942  
    30973097
    30983098    $defaults = array(
    3099         /* translators: Separator between blog name and feed type in feed links. */
     3099        /* translators: Separator between site name and feed type in feed links. */
    31003100        'separator' => _x( '»', 'feed link' ),
    3101         /* translators: 1: Blog title, 2: Separator (raquo). */
     3101        /* translators: 1: Site title, 2: Separator (raquo). */
    31023102        'feedtitle' => __( '%1$s %2$s Feed' ),
    3103         /* translators: 1: Blog title, 2: Separator (raquo). */
     3103        /* translators: 1: Site title, 2: Separator (raquo). */
    31043104        'comstitle' => __( '%1$s %2$s Comments Feed' ),
    31053105    );
     
    31493149function feed_links_extra( $args = array() ) {
    31503150    $defaults = array(
    3151         /* translators: Separator between blog name and feed type in feed links. */
     3151        /* translators: Separator between site name and feed type in feed links. */
    31523152        'separator'     => _x( '»', 'feed link' ),
    3153         /* translators: 1: Blog name, 2: Separator (raquo), 3: Post title. */
     3153        /* translators: 1: Site name, 2: Separator (raquo), 3: Post title. */
    31543154        'singletitle'   => __( '%1$s %2$s %3$s Comments Feed' ),
    3155         /* translators: 1: Blog name, 2: Separator (raquo), 3: Category name. */
     3155        /* translators: 1: Site name, 2: Separator (raquo), 3: Category name. */
    31563156        'cattitle'      => __( '%1$s %2$s %3$s Category Feed' ),
    3157         /* translators: 1: Blog name, 2: Separator (raquo), 3: Tag name. */
     3157        /* translators: 1: Site name, 2: Separator (raquo), 3: Tag name. */
    31583158        'tagtitle'      => __( '%1$s %2$s %3$s Tag Feed' ),
    3159         /* translators: 1: Blog name, 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. */
    31603160        'taxtitle'      => __( '%1$s %2$s %3$s %4$s Feed' ),
    3161         /* translators: 1: Blog name, 2: Separator (raquo), 3: Author name. */
     3161        /* translators: 1: Site name, 2: Separator (raquo), 3: Author name. */
    31623162        'authortitle'   => __( '%1$s %2$s Posts by %3$s Feed' ),
    3163         /* translators: 1: Blog name, 2: Separator (raquo), 3: Search query. */
     3163        /* translators: 1: Site name, 2: Separator (raquo), 3: Search query. */
    31643164        'searchtitle'   => __( '%1$s %2$s Search Results for “%3$s” Feed' ),
    3165         /* translators: 1: Blog name, 2: Separator (raquo), 3: Post type name. */
     3165        /* translators: 1: Site name, 2: Separator (raquo), 3: Post type name. */
    31663166        'posttypetitle' => __( '%1$s %2$s %3$s Feed' ),
    31673167    );
Note: See TracChangeset for help on using the changeset viewer.