Changeset 5308 for trunk/wp-includes/locale.php
- Timestamp:
- 04/25/2007 12:49:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/locale.php
r5062 r5308 88 88 $this->meridiem['PM'] = __('PM'); 89 89 90 // Numbers formatting 91 // See http://php.net/number_format 92 93 $trans = __('number_format_decimals'); 94 $this->number_format['decimals'] = ('number_format_decimals' == $trans) ? 0 : $trans; 95 96 $trans = __('number_format_decimal_point'); 97 $this->number_format['decimal_point'] = ('number_format_decimal_point' == $trans) ? '.' : $trans; 98 99 $trans = __('number_format_thousands_sep'); 100 $this->number_format['thousands_sep'] = ('number_format_thousands_sep' == $trans) ? ',' : $trans; 101 90 102 // Import global locale vars set during inclusion of $locale.php. 91 103 foreach ( $this->locale_vars as $var ) {
Note: See TracChangeset
for help on using the changeset viewer.