Make WordPress Core

Changeset 34300


Ignore:
Timestamp:
09/18/2015 06:45:40 PM (9 years ago)
Author:
SergeyBiryukov
Message:

Add missing translator comments after [34294].

See #31852.

File:
1 edited

Legend:

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

    r34294 r34300  
    104104<div class="updated inline">
    105105<p><?php
     106    /* translators: 1: new admin email, 2: Cancel link URL */
    106107    printf( __( 'There is a pending change of the admin email to %1$s. <a href="%2$s">Cancel</a>' ),
    107108        '<code>' . esc_html( $new_admin_email ) . '</code>',
     
    144145
    145146    <span id="utc-time"><?php
     147        /* translators: %s: UTC time */
    146148        printf( __( '<abbr title="Coordinated Universal Time">UTC</abbr> time is %s' ),
    147149            '<code>' . date_i18n( $timezone_format, false, 'gmt' ) . '</code>'
     
    150152<?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?>
    151153    <span id="local-time"><?php
    152         printf( __( 'Local time is %1$s' ),
     154        /* translators: %s: local time */
     155        printf( __( 'Local time is %s' ),
    153156            '<code>' . date_i18n( $timezone_format ) . '</code>'
    154157        );
Note: See TracChangeset for help on using the changeset viewer.