OLD | NEW |
| (Empty) |
1 # * Copyright (C) 1998-2010, International Business Machines | |
2 # * Corporation and others. All Rights Reserved. | |
3 CURR_CLDR_VERSION = 1.9 | |
4 # A list of txt's to build | |
5 # The downstream packager may not need this file at all if their package is not | |
6 # constrained by | |
7 # the size (and/or their target OS already has ICU with the full locale data.) | |
8 # | |
9 # Listed below are locale data files necessary for 40 + 1 + 8 languages Chrome | |
10 # is localized to. | |
11 # | |
12 # In addition to them, 40+ "abridged" locale data files are listed. Chrome is | |
13 # localized to them, but | |
14 # uses a few categories of data in those locales for IDN handling and language | |
15 # name listing (in the UI). | |
16 # Aliases which do not have a corresponding xx.xml file (see icu-config.xml & | |
17 # build.xml) | |
18 CURR_SYNTHETIC_ALIAS = | |
19 | |
20 # All aliases (to not be included under 'installed'), but not including root. | |
21 CURR_ALIAS_SOURCE = $(CURR_SYNTHETIC_ALIAS)\ | |
22 zh_CN.txt zh_TW.txt zh_HK.txt zh_SG.txt\ | |
23 no.txt in.txt iw.txt | |
24 | |
25 # Ordinary resources | |
26 CURR_SOURCE =\ | |
27 ar.txt\ | |
28 bg.txt\ | |
29 ca.txt\ | |
30 cs.txt\ | |
31 da.txt\ | |
32 de.txt\ | |
33 el.txt\ | |
34 en.txt\ | |
35 es.txt\ | |
36 es_AR.txt es_CO.txt es_EC.txt es_HN.txt es_UY.txt\ | |
37 es_MX.txt es_CL.txt\ | |
38 es_GT.txt es_PR.txt es_US.txt\ | |
39 et.txt\ | |
40 fi.txt\ | |
41 fil.txt\ | |
42 fr.txt\ | |
43 he.txt\ | |
44 hi.txt\ | |
45 hr.txt\ | |
46 hu.txt\ | |
47 id.txt\ | |
48 it.txt\ | |
49 ja.txt\ | |
50 ko.txt\ | |
51 lt.txt\ | |
52 lv.txt\ | |
53 nb.txt\ | |
54 nl.txt\ | |
55 pl.txt\ | |
56 pt.txt pt_PT.txt\ | |
57 ro.txt\ | |
58 ru.txt\ | |
59 sk.txt\ | |
60 sl.txt\ | |
61 sr.txt\ | |
62 sv.txt\ | |
63 th.txt\ | |
64 tr.txt\ | |
65 uk.txt\ | |
66 vi.txt\ | |
67 zh.txt zh_Hans.txt zh_Hans_CN.txt zh_Hans_SG.txt\ | |
68 zh_Hant.txt zh_Hant_TW.txt zh_Hant_HK.txt | |
OLD | NEW |