Make WordPress Core


Ignore:
Timestamp:
01/11/2019 06:03:46 AM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix the minor WordPress.WP.I18n violations.

WordPress.WP.I18n.MissingTranslatorsComment is in progress in #44360.

See #45934.

File:
1 edited

Legend:

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

    r44546 r44562  
    50745074        $exists[5] = ( $exists[2] && $exists[3] );
    50755075
     5076        // phpcs:disable WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
    50765077        $zonen[] = array(
    50775078            'continent'   => ( $exists[0] ? $zone[0] : '' ),
     
    50825083            't_subcity'   => ( $exists[5] ? translate( str_replace( '_', ' ', $zone[2] ), 'continents-cities' ) : '' ),
    50835084        );
     5085        // phpcs:enable
    50845086    }
    50855087    usort( $zonen, '_wp_timezone_choice_usort_callback' );
Note: See TracChangeset for help on using the changeset viewer.