Make WordPress Core


Ignore:
Timestamp:
09/03/2019 12:39:13 AM (7 years ago)
Author:
SergeyBiryukov
Message:

I18N: Capitalize translator comments consistently, add trailing punctuation.

Includes minor code layout fixes.

See #44360.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentysixteen/functions.php

    r45768 r45932  
    314314                $subsets   = 'latin,latin-ext';
    315315
    316                 /* translators: If there are characters in your language that are not supported by Merriweather, translate this to 'off'. Do not translate into your own language. */
     316                /*
     317                 * translators: If there are characters in your language that are not supported
     318                 * by Merriweather, translate this to 'off'. Do not translate into your own language.
     319                 */
    317320                if ( 'off' !== _x( 'on', 'Merriweather font: on or off', 'twentysixteen' ) ) {
    318321                        $fonts[] = 'Merriweather:400,700,900,400italic,700italic,900italic';
    319322                }
    320323
    321                 /* translators: If there are characters in your language that are not supported by Montserrat, translate this to 'off'. Do not translate into your own language. */
     324                /*
     325                 * translators: If there are characters in your language that are not supported
     326                 * by Montserrat, translate this to 'off'. Do not translate into your own language.
     327                 */
    322328                if ( 'off' !== _x( 'on', 'Montserrat font: on or off', 'twentysixteen' ) ) {
    323329                        $fonts[] = 'Montserrat:400,700';
    324330                }
    325331
    326                 /* translators: If there are characters in your language that are not supported by Inconsolata, translate this to 'off'. Do not translate into your own language. */
     332                /*
     333                 * translators: If there are characters in your language that are not supported
     334                 * by Inconsolata, translate this to 'off'. Do not translate into your own language.
     335                 */
    327336                if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'twentysixteen' ) ) {
    328337                        $fonts[] = 'Inconsolata:400';
Note: See TracChangeset for help on using the changeset viewer.