1 // ***************************************************************************
3 // * Copyright (C) 2004, 2007 International Business Machines
4 // * Corporation and others. All Rights Reserved.
6 // ***************************************************************************
10 // * RuleBasedNumberFormat data for German
12 // again, I'm not 100% sure of these rules. I think both "hundert" and
13 // "einhundert" are correct or 100, but I'm not sure which is preferable
14 // in situations where this framework is likely to be used. Also, is it
15 // really true that numbers are run together into compound words all the
18 // 1 is "eins" when by itself, but turns into "ein" in most
23 "null; eins; =%%main=;\n"
25 // words for numbers from 0 to 12. Notice that the values
26 // from 13 to 19 can derived algorithmically, unlike in most
28 "null; ein; zwei; drei; vier; f\u00fcnf; sechs; sieben; acht; neun;\n"
29 "zehn; elf; zw\u00f6lf; >>zehn;\n"
30 // rules for the multiples of 10. Notice that the ones digit
32 "20: [>>und]zwanzig;\n"
33 "30: [>>und]drei\u00dfig;\n"
34 "40: [>>und]vierzig;\n"
35 "50: [>>und]f\u00fcnfzig;\n"
36 "60: [>>und]sechzig;\n"
37 "70: [>>und]siebzig;\n"
38 "80: [>>und]achtzig;\n"
39 "90: [>>und]neunzig;\n"
40 "100: hundert[>%alt-ones>];\n"
41 "200: <<hundert[>%alt-ones>];\n"
42 "1000: tausend[>%alt-ones>];\n"
43 "1100: tausendein[>%alt-ones>];\n"
44 "1200: tausend[>%alt-ones>];\n"
45 "2000: <<tausend[>%alt-ones>];\n"
46 "1,000,000: eine Million[ >%alt-ones>];\n"
47 "2,000,000: << Millionen[ >%alt-ones>];\n"
48 "1,000,000,000: eine Milliarde[ >%alt-ones>];\n"
49 "2,000,000,000: << Milliarden[ >%alt-ones>];\n"
50 "1,000,000,000,000: eine Billion[ >%alt-ones>];\n"
51 "2,000,000,000,000: << Billionen[ >%alt-ones>];\n"
52 "1,000,000,000,000,000: =#,##0=;"
54 "&\u0000 << ' ' << '-'\n"
55 "& ae , \u00e4 & ae , \u00c4\n"
56 "& oe , \u00f6 & oe , \u00d6\n"
57 "& ue , \u00fc & ue , \u00dc\n"