Changeset 45926 for trunk/src/wp-admin/options-general.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-general.php
r45757 r45926 185 185 // Add note about deprecated WPLANG constant. 186 186 if ( defined( 'WPLANG' ) && ( '' !== WPLANG ) && $locale !== WPLANG ) { 187 _deprecated_argument( 'define()', '4.0.0', sprintf( __( 'The %1$s constant in your %2$s file is no longer needed.' ), 'WPLANG', 'wp-config.php' ) ); 187 _deprecated_argument( 188 'define()', 189 '4.0.0', 190 /* translators: 1: WPLANG, 2: wp-config.php */ 191 sprintf( __( 'The %1$s constant in your %2$s file is no longer needed.' ), 'WPLANG', 'wp-config.php' ) 192 ); 188 193 } 189 194 ?> … … 229 234 <span id="utc-time"> 230 235 <?php 231 /* translators: 1: UTC abbreviation, 2: UTC time */232 236 printf( 237 /* translators: 1: UTC abbreviation, 2: UTC time */ 233 238 __( 'Universal time (%1$s) is %2$s.' ), 234 239 '<abbr>' . __( 'UTC' ) . '</abbr>', … … 240 245 <span id="local-time"> 241 246 <?php 242 /* translators: %s: local time */243 247 printf( 248 /* translators: %s: local time */ 244 249 __( 'Local time is %s.' ), 245 250 '<code>' . date_i18n( $timezone_format ) . '</code>'
Note: See TracChangeset
for help on using the changeset viewer.