mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
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:
parent
8f0e1e3c72
commit
569dbcfeab
@ -103,6 +103,7 @@ $new_admin_email = get_option( 'new_admin_email' );
|
|||||||
if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?>
|
if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?>
|
||||||
<div class="updated inline">
|
<div class="updated inline">
|
||||||
<p><?php
|
<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>' ),
|
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>',
|
'<code>' . esc_html( $new_admin_email ) . '</code>',
|
||||||
esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) )
|
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>
|
</select>
|
||||||
|
|
||||||
<span id="utc-time"><?php
|
<span id="utc-time"><?php
|
||||||
|
/* translators: %s: UTC time */
|
||||||
printf( __( '<abbr title="Coordinated Universal Time">UTC</abbr> time is %s' ),
|
printf( __( '<abbr title="Coordinated Universal Time">UTC</abbr> time is %s' ),
|
||||||
'<code>' . date_i18n( $timezone_format, false, 'gmt' ) . '</code>'
|
'<code>' . date_i18n( $timezone_format, false, 'gmt' ) . '</code>'
|
||||||
);
|
);
|
||||||
?></span>
|
?></span>
|
||||||
<?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?>
|
<?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?>
|
||||||
<span id="local-time"><?php
|
<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>'
|
'<code>' . date_i18n( $timezone_format ) . '</code>'
|
||||||
);
|
);
|
||||||
?></span>
|
?></span>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user