1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright © 1991-2013 Unicode, Inc.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
For terms of use, see http://www.unicode.org/copyright.html
-->
<ldml>
<!-- This is a special purpose locale so that a user can request the C or POSIX
style formatting. This does not include grouping separators in numbers, nor
unusual characters for infinity or NaN. Some people have known this to be the
invariant locale, which is different from the root locale.
This locale should not be modified to create some sort of custom collation to
represent a specific codepage. Many users complained when the C locale was
being used, and multi-level UCA collation was expected.
-->
<identity>
<version number="$Revision: 8245 $"/>
<generation date="$Date: 2013-02-24 22:19:26 -0600 (Sun, 24 Feb 2013) $"/>
<language type="en"/>
<territory type="US"/>
<variant type="POSIX"/>
</identity>
<numbers>
<symbols numberSystem="latn">
<perMille>0/00</perMille>
<infinity>INF</infinity>
</symbols>
<decimalFormats numberSystem="latn">
<decimalFormatLength>
<decimalFormat>
<pattern>#0.######</pattern>
</decimalFormat>
</decimalFormatLength>
</decimalFormats>
<scientificFormats numberSystem="latn">
<scientificFormatLength>
<scientificFormat>
<pattern>0.000000E+000</pattern>
</scientificFormat>
</scientificFormatLength>
</scientificFormats>
<percentFormats numberSystem="latn">
<percentFormatLength>
<percentFormat>
<pattern>#0%</pattern>
</percentFormat>
</percentFormatLength>
</percentFormats>
<currencyFormats numberSystem="latn">
<currencyFormatLength>
<currencyFormat>
<pattern>¤ #0.00</pattern>
</currencyFormat>
</currencyFormatLength>
</currencyFormats>
</numbers>
</ldml>
|