Changeset 45930 for trunk/src/wp-admin/options-general.php
- Timestamp:
- 09/02/2019 09:43:39 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-general.php
r45926 r45930 229 229 </select> 230 230 231 <p class="description" id="timezone-description"><?php _e( 'Choose either a city in the same timezone as you or a UTC timezone offset.' ); ?></p> 231 <p class="description" id="timezone-description"> 232 <?php 233 printf( 234 /* translators: %s: UTC abbreviation */ 235 __( 'Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.' ), 236 '<abbr>UTC</abbr>' 237 ); 238 ?> 239 </p> 232 240 233 241 <p class="timezone-info"> … … 235 243 <?php 236 244 printf( 237 /* translators: 1: UTC abbreviation, 2: UTC time */ 238 __( 'Universal time (%1$s) is %2$s.' ), 239 '<abbr>' . __( 'UTC' ) . '</abbr>', 245 /* translators: 1: UTC time */ 246 __( 'Universal time is %1$s.' ), 240 247 '<code>' . date_i18n( $timezone_format, false, true ) . '</code>' 241 248 );
Note: See TracChangeset
for help on using the changeset viewer.