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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
// Copyright (C) 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
//*******************************************************************************
//*
//* Copyright (C) 1998-2016, International Business Machines
//* Corporation and others. All Rights Reserved.
//*
//*******************************************************************************
// This is a test default locale file
root
{
Version { 44.0 }
ExpectCLDRVersionAtLeast { 43.0 } // 'base' cldr version. Allow up to version =.=.* of this
CurrentCLDRVersion { 43.0 } // Current CLDR version as of the test update. Warn if not an exact match.
ShortLanguage { xxx }
string_only_in_Root { ROOT }
array_only_in_Root { ROOT0, ROOT1, ROOT2, ROOT3 }
array_2d_only_in_Root
{
{ ROOT00, ROOT01 }
{ ROOT10, ROOT11 }
}
tagged_array_only_in_Root
{
tag2 { ROOT2 }
tag1 { ROOT1 }
tag3 { ROOT3 }
tag6 { ROOT6 }
tag12 { ROOT12 }
tag7 { ROOT7 }
tag14 { ROOT14 }
tag9 { ROOT9 }
}
string_in_Root_te_te_IN { ROOT }
array_in_Root_te_te_IN { ROOT0, ROOT1, ROOT2, ROOT3, ROOT4 }
array_2d_in_Root_te_te_IN
{
{ ROOT00, ROOT01, ROOT02 }
{ ROOT10, ROOT11, ROOT12 }
{ ROOT20, ROOT21, ROOT22 }
{ ROOT30, ROOT31, ROOT32 }
}
tagged_array_in_Root_te_te_IN
{
tag4 { ROOT4 }
tag9 { ROOT9 }
tag12 { ROOT12 }
tag1 { ROOT1 }
}
string_in_Root_te { ROOT }
array_in_Root_te { ROOT0, ROOT1, ROOT2, ROOT3, ROOT4 }
array_2d_in_Root_te
{
{ ROOT00, ROOT01, ROOT02 }
{ ROOT10, ROOT11, ROOT12 }
{ ROOT20, ROOT21, ROOT22 }
{ ROOT30, ROOT31, ROOT32 }
}
tagged_array_in_Root_te
{
tag12 { ROOT12 }
tag1 { ROOT1 }
tag7 { ROOT7 }
tag3 { ROOT3 }
}
string_in_Root_te_IN { ROOT }
array_in_Root_te_IN { ROOT0, ROOT1, ROOT2 }
array_2d_in_Root_te_IN
{
{ ROOT00, ROOT01, ROOT02, ROOT03 }
{ ROOT10, ROOT11, ROOT12, ROOT13 }
{ ROOT20, ROOT21, ROOT22, ROOT23 }
}
tagged_array_in_Root_te_IN
{
tag13 { ROOT13 }
tag8 { ROOT8 }
}
rootAliasClient:alias {"/LOCALE/rootAliasDestination"}
rootAliasDestination {"wrong"}
nestedRootAliasClient:alias {"/LOCALE/rootAliasTable/destination"}
rootAliasTable {
destination { "correct" }
}
a {
a1{"ar1"}
a2{"ar2"}
a3{"ar3"}
a4{"ar4"}
}
tableT7996 {
b7996:alias {"/LOCALE/tableT7996/c7996"}
c7996 {"string c7996 in tableT7996 for root"}
}
}
//eof
|