blob: fc99d237c8ac4eb4354a88c7bcd8af12b2ff8c58 (
plain)
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
|
// ***************************************************************************
// *
// * Copyright (C) 2004, International Business Machines
// * Corporation and others. All Rights Reserved.
// *
// ***************************************************************************
//
root {
//------------------------------------------------------------
// Rule Based Number Format Support
//------------------------------------------------------------
/*
* Default used to be English (US) rules, but now default just formats
* like DecimalFormat. The former default rules are now the _en rules.
*/
SpelloutRules {
"=#,##0.######=;\n"
}
OrdinalRules {
"=#,##0=;\n"
}
DurationRules {
"=#,##0=;\n"
}
}
|