Add missing translator comments after [34294].

See #31852.
Built from https://develop.svn.wordpress.org/trunk@34300


git-svn-id: http://core.svn.wordpress.org/trunk@34264 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2015-09-18 18:46:24 +00:00
parent 8f0e1e3c72
commit 569dbcfeab
2 changed files with 5 additions and 2 deletions

View File

@ -103,6 +103,7 @@ $new_admin_email = get_option( 'new_admin_email' );
if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?>
<div class="updated inline">
<p><?php
/* translators: 1: new admin email, 2: Cancel link URL */
printf( __( 'There is a pending change of the admin email to %1$s. <a href="%2$s">Cancel</a>' ),
'<code>' . esc_html( $new_admin_email ) . '</code>',
esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) )
@ -143,13 +144,15 @@ if ( empty($tzstring) ) { // Create a UTC+- zone if no timezone string exists
</select>
<span id="utc-time"><?php
/* translators: %s: UTC time */
printf( __( '<abbr title="Coordinated Universal Time">UTC</abbr> time is %s' ),
'<code>' . date_i18n( $timezone_format, false, 'gmt' ) . '</code>'
);
?></span>
<?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?>
<span id="local-time"><?php
printf( __( 'Local time is %1$s' ),
/* translators: %s: local time */
printf( __( 'Local time is %s' ),
'<code>' . date_i18n( $timezone_format ) . '</code>'
);
?></span>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34299';
$wp_version = '4.4-alpha-34300';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.