Make WordPress Core


Ignore:
Timestamp:
09/01/2019 05:12:43 PM (5 years ago)
Author:
SergeyBiryukov
Message:

I18N: Improve translator comments.

  • Add missing translator comments.
  • Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various .pot file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.

Includes minor code layout fixes.

Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!

Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.

File:
1 edited

Legend:

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

    r45900 r45926  
    123123    if ( ! is_admin() ) {
    124124        if ( ! empty( $post->post_password ) ) {
     125
     126            /* translators: %s: protected post title */
     127            $prepend = __( 'Protected: %s' );
    125128
    126129            /**
     
    135138             * @param WP_Post $post    Current post object.
    136139             */
    137             $protected_title_format = apply_filters( 'protected_title_format', __( 'Protected: %s' ), $post );
     140            $protected_title_format = apply_filters( 'protected_title_format', $prepend, $post );
    138141            $title                  = sprintf( $protected_title_format, $title );
    139142        } elseif ( isset( $post->post_status ) && 'private' == $post->post_status ) {
     143
     144            /* translators: %s: private post title */
     145            $prepend = __( 'Private: %s' );
    140146
    141147            /**
     
    150156             * @param WP_Post $post    Current post object.
    151157             */
    152             $private_title_format = apply_filters( 'private_title_format', __( 'Private: %s' ), $post );
     158            $private_title_format = apply_filters( 'private_title_format', $prepend, $post );
    153159            $title                = sprintf( $private_title_format, $title );
    154160        }
Note: See TracChangeset for help on using the changeset viewer.