Make WordPress Core


Ignore:
Timestamp:
09/01/2019 05:12:43 PM (6 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-admin/includes/class-wp-media-list-table.php

    r45742 r45926  
    357357            ?>
    358358            <label class="screen-reader-text" for="cb-select-<?php echo $post->ID; ?>">
    359                 <?php printf( __( 'Select %s' ), _draft_or_post_title() ); ?>
     359                <?php
     360                /* translators: %s: attachment title */
     361                printf( __( 'Select %s' ), _draft_or_post_title() );
     362                ?>
    360363            </label>
    361364            <input type="checkbox" name="media[]" id="cb-select-<?php echo $post->ID; ?>" value="<?php echo $post->ID; ?>" />
     
    455458            if ( ( abs( $t_diff ) ) < DAY_IN_SECONDS ) {
    456459                if ( $t_diff < 0 ) {
     460                    /* translators: %s: Human-readable time difference */
    457461                    $h_time = sprintf( __( '%s from now' ), human_time_diff( $time ) );
    458462                } else {
     463                    /* translators: %s: Human-readable time difference */
    459464                    $h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
    460465                }
Note: See TracChangeset for help on using the changeset viewer.