Changeset 6026 for trunk/wp-includes/locale.php
- Timestamp:
- 09/03/2007 11:32:58 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/locale.php
r5700 r6026 91 91 // See http://php.net/number_format 92 92 93 $trans = __('number_format_decimals'); 93 $trans = __('number_format_decimals'); 94 94 $this->number_format['decimals'] = ('number_format_decimals' == $trans) ? 0 : $trans; 95 95 … … 97 97 $this->number_format['decimal_point'] = ('number_format_decimal_point' == $trans) ? '.' : $trans; 98 98 99 $trans = __('number_format_thousands_sep'); 100 $this->number_format['thousands_sep'] = ('number_format_thousands_sep' == $trans) ? ',' : $trans; 99 $trans = __('number_format_thousands_sep'); 100 $this->number_format['thousands_sep'] = ('number_format_thousands_sep' == $trans) ? ',' : $trans; 101 101 102 102 // Import global locale vars set during inclusion of $locale.php.
Note: See TracChangeset
for help on using the changeset viewer.