Changeset 37674 for trunk/src/wp-includes/locale.php
- Timestamp:
- 06/10/2016 04:49:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/locale.php
r37431 r37674 185 185 186 186 // Numbers formatting 187 // See http ://php.net/number_format188 189 /* translators: $thousands_sep argument for http ://php.net/number_format, default is , */187 // See https://secure.php.net/number_format 188 189 /* translators: $thousands_sep argument for https://secure.php.net/number_format, default is , */ 190 190 $thousands_sep = __( 'number_format_thousands_sep' ); 191 191 … … 200 200 $this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep; 201 201 202 /* translators: $dec_point argument for http ://php.net/number_format, default is . */202 /* translators: $dec_point argument for https://secure.php.net/number_format, default is . */ 203 203 $decimal_point = __( 'number_format_decimal_point' ); 204 204 … … 386 386 */ 387 387 public function _strings_for_pot() { 388 /* translators: localized date format, see http ://php.net/date */388 /* translators: localized date format, see https://secure.php.net/date */ 389 389 __( 'F j, Y' ); 390 /* translators: localized time format, see http ://php.net/date */390 /* translators: localized time format, see https://secure.php.net/date */ 391 391 __( 'g:i a' ); 392 /* translators: localized date and time format, see http ://php.net/date */392 /* translators: localized date and time format, see https://secure.php.net/date */ 393 393 __( 'F j, Y g:i a' ); 394 394 }
Note: See TracChangeset
for help on using the changeset viewer.