Make WordPress Core

Changeset 45676


Ignore:
Timestamp:
07/25/2019 10:51:53 PM (6 years ago)
Author:
SergeyBiryukov
Message:

I18N: Update translator comments after [45674].

See #47771.

Location:
trunk/src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/about.php

    r45660 r45676  
    207207);
    208208
    209 /* translators: %s: Codex URL */
     209/* translators: %s: Documentation URL */
    210210__( 'For more information, see <a href="%s">the release notes</a>.' );
  • trunk/src/wp-admin/includes/meta-boxes.php

    r45674 r45676  
    664664    <?php
    665665    printf(
    666         /* translators: %s: Codex URL */
     666        /* translators: %s: Documentation URL */
    667667        __( 'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. <a href="%s">Learn more about manual excerpts</a>.' ),
    668668        __( 'https://wordpress.org/support/article/excerpt/' )
     
    701701    <?php
    702702    printf(
    703         /* translators: %s: Codex URL */
     703        /* translators: %s: Documentation URL */
    704704        __( 'Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. If you link other WordPress sites, they&#8217;ll be notified automatically using <a href="%s">pingbacks</a>, no other action necessary.' ),
    705705        __( 'https://wordpress.org/support/article/introduction-to-blogging/#comments' )
     
    738738    <?php
    739739    printf(
    740         /* translators: %s: Codex URL */
     740        /* translators: %s: Documentation URL */
    741741        __( 'Custom fields can be used to add extra metadata to a post that you can <a href="%s">use in your theme</a>.' ),
    742742        __( 'https://wordpress.org/support/article/custom-fields/' )
     
    762762        <?php
    763763        printf(
    764             /* translators: %s: Codex URL */
     764            /* translators: %s: Documentation URL */
    765765            __( 'Allow <a href="%s">trackbacks and pingbacks</a> on this page' ),
    766766            __( 'https://wordpress.org/support/article/introduction-to-blogging/#managing-comments' )
  • trunk/src/wp-admin/options-general.php

    r45674 r45676  
    9696        <?php
    9797        printf(
    98             /* translators: %s: Codex URL */
     98            /* translators: %s: Documentation URL */
    9999            __( 'Enter the address here if you <a href="%s">want your site home page to be different from your WordPress installation directory</a>.' ),
    100100            __( 'https://wordpress.org/support/article/giving-wordpress-its-own-directory/' )
  • trunk/src/wp-admin/options-permalink.php

    r45674 r45676  
    174174    <?php
    175175        printf(
    176             /* translators: %s: Codex URL */
     176            /* translators: %s: Documentation URL */
    177177            __( 'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="%s">number of tags are available</a>, and here are some examples to get you started.' ),
    178178            __( 'https://wordpress.org/support/article/using-permalinks/' )
  • trunk/src/wp-admin/setup-config.php

    r45674 r45676  
    187187    </strong>
    188188        <?php
    189         /* translators: %s: Codex URL */
     189        /* translators: %s: Documentation URL */
    190190        printf(
    191191            __( 'Need more help? <a href="%s">We got it</a>.' ),
  • trunk/src/wp-includes/formatting.php

    r45674 r45676  
    46924692            if ( 'permalink_structure' === $option && '' !== $value && ! preg_match( '/%[^\/%]+%/', $value ) ) {
    46934693                $error = sprintf(
    4694                     /* translators: %s: Codex URL */
     4694                    /* translators: %s: Documentation URL */
    46954695                    __( 'A structure tag is required when using custom permalinks. <a href="%s">Learn more</a>' ),
    46964696                    __( 'https://wordpress.org/support/article/using-permalinks/#choosing-your-permalink-structure' )
  • trunk/src/wp-includes/functions.php

    r45674 r45676  
    47904790                $version = sprintf( __( '(This message was added in version %s.)' ), $version );
    47914791            }
    4792             /* translators: %s: Codex URL */
     4792            /* translators: %s: Documentation URL */
    47934793            $message .= ' ' . sprintf(
    47944794                __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
  • trunk/src/wp-includes/ms-load.php

    r45674 r45676  
    490490    }
    491491    $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
    492     /* translators: %s: Codex URL */
     492    /* translators: %s: Documentation URL */
    493493    $msg .= sprintf(
    494494        __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ),
  • trunk/src/wp-load.php

    r45674 r45676  
    7979    ) . '</p>';
    8080    $die .= '<p>' . sprintf(
    81         /* translators: %s: Codex URL */
     81        /* translators: %s: Documentation URL */
    8282        __( "Need more help? <a href='%s'>We got it</a>." ),
    8383        __( 'https://wordpress.org/support/article/editing-wp-config-php/' )
Note: See TracChangeset for help on using the changeset viewer.