Changeset 47088 for trunk/src/wp-includes/class-wp-locale.php
- Timestamp:
- 01/20/2020 03:12:12 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-locale.php
r46214 r47088 195 195 196 196 // Numbers formatting 197 // See https:// secure.php.net/number_format198 199 /* translators: $thousands_sep argument for https:// secure.php.net/number_format, default is ',' */197 // See https://www.php.net/number_format 198 199 /* translators: $thousands_sep argument for https://www.php.net/number_format, default is ',' */ 200 200 $thousands_sep = __( 'number_format_thousands_sep' ); 201 201 … … 205 205 $this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep; 206 206 207 /* translators: $dec_point argument for https:// secure.php.net/number_format, default is '.' */207 /* translators: $dec_point argument for https://www.php.net/number_format, default is '.' */ 208 208 $decimal_point = __( 'number_format_decimal_point' ); 209 209 … … 360 360 */ 361 361 public function _strings_for_pot() { 362 /* translators: Localized date format, see https:// secure.php.net/date */362 /* translators: Localized date format, see https://www.php.net/date */ 363 363 __( 'F j, Y' ); 364 /* translators: Localized time format, see https:// secure.php.net/date */364 /* translators: Localized time format, see https://www.php.net/date */ 365 365 __( 'g:i a' ); 366 /* translators: Localized date and time format, see https:// secure.php.net/date */366 /* translators: Localized date and time format, see https://www.php.net/date */ 367 367 __( 'F j, Y g:i a' ); 368 368 }
Note: See TracChangeset
for help on using the changeset viewer.