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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
|
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
package cldr
// LDMLBCP47 holds information on allowable values for various variables in LDML.
type LDMLBCP47 struct {
Common
Version *struct {
Common
Number string `xml:"number,attr"`
} `xml:"version"`
Generation *struct {
Common
Date string `xml:"date,attr"`
} `xml:"generation"`
Keyword []*struct {
Common
Key []*struct {
Common
Extension string `xml:"extension,attr"`
Name string `xml:"name,attr"`
Description string `xml:"description,attr"`
Deprecated string `xml:"deprecated,attr"`
Preferred string `xml:"preferred,attr"`
Alias string `xml:"alias,attr"`
ValueType string `xml:"valueType,attr"`
Since string `xml:"since,attr"`
Type []*struct {
Common
Name string `xml:"name,attr"`
Description string `xml:"description,attr"`
Deprecated string `xml:"deprecated,attr"`
Preferred string `xml:"preferred,attr"`
Alias string `xml:"alias,attr"`
Since string `xml:"since,attr"`
} `xml:"type"`
} `xml:"key"`
} `xml:"keyword"`
Attribute []*struct {
Common
Name string `xml:"name,attr"`
Description string `xml:"description,attr"`
Deprecated string `xml:"deprecated,attr"`
Preferred string `xml:"preferred,attr"`
Since string `xml:"since,attr"`
} `xml:"attribute"`
}
// SupplementalData holds information relevant for internationalization
// and proper use of CLDR, but that is not contained in the locale hierarchy.
type SupplementalData struct {
Common
Version *struct {
Common
Number string `xml:"number,attr"`
} `xml:"version"`
Generation *struct {
Common
Date string `xml:"date,attr"`
} `xml:"generation"`
CurrencyData *struct {
Common
Fractions []*struct {
Common
Info []*struct {
Common
Iso4217 string `xml:"iso4217,attr"`
Digits string `xml:"digits,attr"`
Rounding string `xml:"rounding,attr"`
CashDigits string `xml:"cashDigits,attr"`
CashRounding string `xml:"cashRounding,attr"`
} `xml:"info"`
} `xml:"fractions"`
Region []*struct {
Common
Iso3166 string `xml:"iso3166,attr"`
Currency []*struct {
Common
Before string `xml:"before,attr"`
From string `xml:"from,attr"`
To string `xml:"to,attr"`
Iso4217 string `xml:"iso4217,attr"`
Digits string `xml:"digits,attr"`
Rounding string `xml:"rounding,attr"`
CashRounding string `xml:"cashRounding,attr"`
Tender string `xml:"tender,attr"`
Alternate []*struct {
Common
Iso4217 string `xml:"iso4217,attr"`
} `xml:"alternate"`
} `xml:"currency"`
} `xml:"region"`
} `xml:"currencyData"`
TerritoryContainment *struct {
Common
Group []*struct {
Common
Contains string `xml:"contains,attr"`
Grouping string `xml:"grouping,attr"`
Status string `xml:"status,attr"`
} `xml:"group"`
} `xml:"territoryContainment"`
SubdivisionContainment *struct {
Common
Subgroup []*struct {
Common
Subtype string `xml:"subtype,attr"`
Contains string `xml:"contains,attr"`
} `xml:"subgroup"`
} `xml:"subdivisionContainment"`
LanguageData *struct {
Common
Language []*struct {
Common
Scripts string `xml:"scripts,attr"`
Territories string `xml:"territories,attr"`
Variants string `xml:"variants,attr"`
} `xml:"language"`
} `xml:"languageData"`
TerritoryInfo *struct {
Common
Territory []*struct {
Common
Gdp string `xml:"gdp,attr"`
LiteracyPercent string `xml:"literacyPercent,attr"`
Population string `xml:"population,attr"`
LanguagePopulation []*struct {
Common
LiteracyPercent string `xml:"literacyPercent,attr"`
WritingPercent string `xml:"writingPercent,attr"`
PopulationPercent string `xml:"populationPercent,attr"`
OfficialStatus string `xml:"officialStatus,attr"`
} `xml:"languagePopulation"`
} `xml:"territory"`
} `xml:"territoryInfo"`
PostalCodeData *struct {
Common
PostCodeRegex []*struct {
Common
TerritoryId string `xml:"territoryId,attr"`
} `xml:"postCodeRegex"`
} `xml:"postalCodeData"`
CalendarData *struct {
Common
Calendar []*struct {
Common
Territories string `xml:"territories,attr"`
CalendarSystem *Common `xml:"calendarSystem"`
Eras *struct {
Common
Era []*struct {
Common
Start string `xml:"start,attr"`
End string `xml:"end,attr"`
} `xml:"era"`
} `xml:"eras"`
} `xml:"calendar"`
} `xml:"calendarData"`
CalendarPreferenceData *struct {
Common
CalendarPreference []*struct {
Common
Territories string `xml:"territories,attr"`
Ordering string `xml:"ordering,attr"`
} `xml:"calendarPreference"`
} `xml:"calendarPreferenceData"`
WeekData *struct {
Common
MinDays []*struct {
Common
Count string `xml:"count,attr"`
Territories string `xml:"territories,attr"`
} `xml:"minDays"`
FirstDay []*struct {
Common
Day string `xml:"day,attr"`
Territories string `xml:"territories,attr"`
} `xml:"firstDay"`
WeekendStart []*struct {
Common
Day string `xml:"day,attr"`
Territories string `xml:"territories,attr"`
} `xml:"weekendStart"`
WeekendEnd []*struct {
Common
Day string `xml:"day,attr"`
Territories string `xml:"territories,attr"`
} `xml:"weekendEnd"`
WeekOfPreference []*struct {
Common
Locales string `xml:"locales,attr"`
Ordering string `xml:"ordering,attr"`
} `xml:"weekOfPreference"`
} `xml:"weekData"`
TimeData *struct {
Common
Hours []*struct {
Common
Allowed string `xml:"allowed,attr"`
Preferred string `xml:"preferred,attr"`
Regions string `xml:"regions,attr"`
} `xml:"hours"`
} `xml:"timeData"`
MeasurementData *struct {
Common
MeasurementSystem []*struct {
Common
Category string `xml:"category,attr"`
Territories string `xml:"territories,attr"`
} `xml:"measurementSystem"`
PaperSize []*struct {
Common
Territories string `xml:"territories,attr"`
} `xml:"paperSize"`
} `xml:"measurementData"`
UnitPreferenceData *struct {
Common
UnitPreferences []*struct {
Common
Category string `xml:"category,attr"`
Usage string `xml:"usage,attr"`
Scope string `xml:"scope,attr"`
UnitPreference []*struct {
Common
Regions string `xml:"regions,attr"`
} `xml:"unitPreference"`
} `xml:"unitPreferences"`
} `xml:"unitPreferenceData"`
TimezoneData *struct {
Common
MapTimezones []*struct {
Common
OtherVersion string `xml:"otherVersion,attr"`
TypeVersion string `xml:"typeVersion,attr"`
MapZone []*struct {
Common
Other string `xml:"other,attr"`
Territory string `xml:"territory,attr"`
} `xml:"mapZone"`
} `xml:"mapTimezones"`
ZoneFormatting []*struct {
Common
Multizone string `xml:"multizone,attr"`
TzidVersion string `xml:"tzidVersion,attr"`
ZoneItem []*struct {
Common
Territory string `xml:"territory,attr"`
Aliases string `xml:"aliases,attr"`
} `xml:"zoneItem"`
} `xml:"zoneFormatting"`
} `xml:"timezoneData"`
Characters *struct {
Common
CharacterFallback []*struct {
Common
Character []*struct {
Common
Value string `xml:"value,attr"`
Substitute []*Common `xml:"substitute"`
} `xml:"character"`
} `xml:"character-fallback"`
} `xml:"characters"`
Transforms *struct {
Common
Transform []*struct {
Common
Source string `xml:"source,attr"`
Target string `xml:"target,attr"`
Variant string `xml:"variant,attr"`
Direction string `xml:"direction,attr"`
Alias string `xml:"alias,attr"`
BackwardAlias string `xml:"backwardAlias,attr"`
Visibility string `xml:"visibility,attr"`
Comment []*Common `xml:"comment"`
TRule []*Common `xml:"tRule"`
} `xml:"transform"`
} `xml:"transforms"`
Metadata *struct {
Common
AttributeOrder *Common `xml:"attributeOrder"`
ElementOrder *Common `xml:"elementOrder"`
SerialElements *Common `xml:"serialElements"`
Suppress *struct {
Common
Attributes []*struct {
Common
Element string `xml:"element,attr"`
Attribute string `xml:"attribute,attr"`
AttributeValue string `xml:"attributeValue,attr"`
} `xml:"attributes"`
} `xml:"suppress"`
Validity *struct {
Common
Variable []*struct {
Common
Id string `xml:"id,attr"`
} `xml:"variable"`
AttributeValues []*struct {
Common
Dtds string `xml:"dtds,attr"`
Elements string `xml:"elements,attr"`
Attributes string `xml:"attributes,attr"`
Order string `xml:"order,attr"`
} `xml:"attributeValues"`
} `xml:"validity"`
Alias *struct {
Common
LanguageAlias []*struct {
Common
Replacement string `xml:"replacement,attr"`
Reason string `xml:"reason,attr"`
} `xml:"languageAlias"`
ScriptAlias []*struct {
Common
Replacement string `xml:"replacement,attr"`
Reason string `xml:"reason,attr"`
} `xml:"scriptAlias"`
TerritoryAlias []*struct {
Common
Replacement string `xml:"replacement,attr"`
Reason string `xml:"reason,attr"`
} `xml:"territoryAlias"`
SubdivisionAlias []*struct {
Common
Replacement string `xml:"replacement,attr"`
Reason string `xml:"reason,attr"`
} `xml:"subdivisionAlias"`
VariantAlias []*struct {
Common
Replacement string `xml:"replacement,attr"`
Reason string `xml:"reason,attr"`
} `xml:"variantAlias"`
ZoneAlias []*struct {
Common
Replacement string `xml:"replacement,attr"`
Reason string `xml:"reason,attr"`
} `xml:"zoneAlias"`
} `xml:"alias"`
Deprecated *struct {
Common
DeprecatedItems []*struct {
Common
Elements string `xml:"elements,attr"`
Attributes string `xml:"attributes,attr"`
Values string `xml:"values,attr"`
} `xml:"deprecatedItems"`
} `xml:"deprecated"`
Distinguishing *struct {
Common
DistinguishingItems []*struct {
Common
Exclude string `xml:"exclude,attr"`
Elements string `xml:"elements,attr"`
Attributes string `xml:"attributes,attr"`
} `xml:"distinguishingItems"`
} `xml:"distinguishing"`
Blocking *struct {
Common
BlockingItems []*struct {
Common
Elements string `xml:"elements,attr"`
} `xml:"blockingItems"`
} `xml:"blocking"`
CoverageAdditions *struct {
Common
LanguageCoverage []*struct {
Common
Values string `xml:"values,attr"`
} `xml:"languageCoverage"`
ScriptCoverage []*struct {
Common
Values string `xml:"values,attr"`
} `xml:"scriptCoverage"`
TerritoryCoverage []*struct {
Common
Values string `xml:"values,attr"`
} `xml:"territoryCoverage"`
CurrencyCoverage []*struct {
Common
Values string `xml:"values,attr"`
} `xml:"currencyCoverage"`
TimezoneCoverage []*struct {
Common
Values string `xml:"values,attr"`
} `xml:"timezoneCoverage"`
} `xml:"coverageAdditions"`
SkipDefaultLocale *struct {
Common
Services string `xml:"services,attr"`
} `xml:"skipDefaultLocale"`
DefaultContent *struct {
Common
Locales string `xml:"locales,attr"`
} `xml:"defaultContent"`
} `xml:"metadata"`
CodeMappings *struct {
Common
LanguageCodes []*struct {
Common
Alpha3 string `xml:"alpha3,attr"`
} `xml:"languageCodes"`
TerritoryCodes []*struct {
Common
Numeric string `xml:"numeric,attr"`
Alpha3 string `xml:"alpha3,attr"`
Fips10 string `xml:"fips10,attr"`
Internet string `xml:"internet,attr"`
} `xml:"territoryCodes"`
CurrencyCodes []*struct {
Common
Numeric string `xml:"numeric,attr"`
} `xml:"currencyCodes"`
} `xml:"codeMappings"`
ParentLocales *struct {
Common
ParentLocale []*struct {
Common
Parent string `xml:"parent,attr"`
Locales string `xml:"locales,attr"`
} `xml:"parentLocale"`
} `xml:"parentLocales"`
LikelySubtags *struct {
Common
LikelySubtag []*struct {
Common
From string `xml:"from,attr"`
To string `xml:"to,attr"`
} `xml:"likelySubtag"`
} `xml:"likelySubtags"`
MetazoneInfo *struct {
Common
Timezone []*struct {
Common
UsesMetazone []*struct {
Common
From string `xml:"from,attr"`
To string `xml:"to,attr"`
Mzone string `xml:"mzone,attr"`
} `xml:"usesMetazone"`
} `xml:"timezone"`
} `xml:"metazoneInfo"`
Plurals []*struct {
Common
PluralRules []*struct {
Common
Locales string `xml:"locales,attr"`
PluralRule []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"pluralRule"`
} `xml:"pluralRules"`
PluralRanges []*struct {
Common
Locales string `xml:"locales,attr"`
PluralRange []*struct {
Common
Start string `xml:"start,attr"`
End string `xml:"end,attr"`
Result string `xml:"result,attr"`
} `xml:"pluralRange"`
} `xml:"pluralRanges"`
} `xml:"plurals"`
TelephoneCodeData *struct {
Common
CodesByTerritory []*struct {
Common
Territory string `xml:"territory,attr"`
TelephoneCountryCode []*struct {
Common
Code string `xml:"code,attr"`
From string `xml:"from,attr"`
To string `xml:"to,attr"`
} `xml:"telephoneCountryCode"`
} `xml:"codesByTerritory"`
} `xml:"telephoneCodeData"`
NumberingSystems *struct {
Common
NumberingSystem []*struct {
Common
Id string `xml:"id,attr"`
Radix string `xml:"radix,attr"`
Digits string `xml:"digits,attr"`
Rules string `xml:"rules,attr"`
} `xml:"numberingSystem"`
} `xml:"numberingSystems"`
Bcp47KeywordMappings *struct {
Common
MapKeys *struct {
Common
KeyMap []*struct {
Common
Bcp47 string `xml:"bcp47,attr"`
} `xml:"keyMap"`
} `xml:"mapKeys"`
MapTypes []*struct {
Common
TypeMap []*struct {
Common
Bcp47 string `xml:"bcp47,attr"`
} `xml:"typeMap"`
} `xml:"mapTypes"`
} `xml:"bcp47KeywordMappings"`
Gender *struct {
Common
PersonList []*struct {
Common
Locales string `xml:"locales,attr"`
} `xml:"personList"`
} `xml:"gender"`
References *struct {
Common
Reference []*struct {
Common
Uri string `xml:"uri,attr"`
} `xml:"reference"`
} `xml:"references"`
LanguageMatching *struct {
Common
LanguageMatches []*struct {
Common
ParadigmLocales []*struct {
Common
Locales string `xml:"locales,attr"`
} `xml:"paradigmLocales"`
MatchVariable []*struct {
Common
Id string `xml:"id,attr"`
Value string `xml:"value,attr"`
} `xml:"matchVariable"`
LanguageMatch []*struct {
Common
Desired string `xml:"desired,attr"`
Supported string `xml:"supported,attr"`
Percent string `xml:"percent,attr"`
Distance string `xml:"distance,attr"`
Oneway string `xml:"oneway,attr"`
} `xml:"languageMatch"`
} `xml:"languageMatches"`
} `xml:"languageMatching"`
DayPeriodRuleSet []*struct {
Common
DayPeriodRules []*struct {
Common
Locales string `xml:"locales,attr"`
DayPeriodRule []*struct {
Common
At string `xml:"at,attr"`
After string `xml:"after,attr"`
Before string `xml:"before,attr"`
From string `xml:"from,attr"`
To string `xml:"to,attr"`
} `xml:"dayPeriodRule"`
} `xml:"dayPeriodRules"`
} `xml:"dayPeriodRuleSet"`
MetaZones *struct {
Common
MetazoneInfo *struct {
Common
Timezone []*struct {
Common
UsesMetazone []*struct {
Common
From string `xml:"from,attr"`
To string `xml:"to,attr"`
Mzone string `xml:"mzone,attr"`
} `xml:"usesMetazone"`
} `xml:"timezone"`
} `xml:"metazoneInfo"`
MapTimezones *struct {
Common
OtherVersion string `xml:"otherVersion,attr"`
TypeVersion string `xml:"typeVersion,attr"`
MapZone []*struct {
Common
Other string `xml:"other,attr"`
Territory string `xml:"territory,attr"`
} `xml:"mapZone"`
} `xml:"mapTimezones"`
} `xml:"metaZones"`
PrimaryZones *struct {
Common
PrimaryZone []*struct {
Common
Iso3166 string `xml:"iso3166,attr"`
} `xml:"primaryZone"`
} `xml:"primaryZones"`
WindowsZones *struct {
Common
MapTimezones *struct {
Common
OtherVersion string `xml:"otherVersion,attr"`
TypeVersion string `xml:"typeVersion,attr"`
MapZone []*struct {
Common
Other string `xml:"other,attr"`
Territory string `xml:"territory,attr"`
} `xml:"mapZone"`
} `xml:"mapTimezones"`
} `xml:"windowsZones"`
CoverageLevels *struct {
Common
ApprovalRequirements *struct {
Common
ApprovalRequirement []*struct {
Common
Votes string `xml:"votes,attr"`
Locales string `xml:"locales,attr"`
Paths string `xml:"paths,attr"`
} `xml:"approvalRequirement"`
} `xml:"approvalRequirements"`
CoverageVariable []*struct {
Common
Key string `xml:"key,attr"`
Value string `xml:"value,attr"`
} `xml:"coverageVariable"`
CoverageLevel []*struct {
Common
InLanguage string `xml:"inLanguage,attr"`
InScript string `xml:"inScript,attr"`
InTerritory string `xml:"inTerritory,attr"`
Value string `xml:"value,attr"`
Match string `xml:"match,attr"`
} `xml:"coverageLevel"`
} `xml:"coverageLevels"`
IdValidity *struct {
Common
Id []*struct {
Common
IdStatus string `xml:"idStatus,attr"`
} `xml:"id"`
} `xml:"idValidity"`
RgScope *struct {
Common
RgPath []*struct {
Common
Path string `xml:"path,attr"`
} `xml:"rgPath"`
} `xml:"rgScope"`
LanguageGroups *struct {
Common
LanguageGroup []*struct {
Common
Parent string `xml:"parent,attr"`
} `xml:"languageGroup"`
} `xml:"languageGroups"`
}
// LDML is the top-level type for locale-specific data.
type LDML struct {
Common
Version string `xml:"version,attr"`
Identity *struct {
Common
Version *struct {
Common
Number string `xml:"number,attr"`
} `xml:"version"`
Generation *struct {
Common
Date string `xml:"date,attr"`
} `xml:"generation"`
Language *Common `xml:"language"`
Script *Common `xml:"script"`
Territory *Common `xml:"territory"`
Variant *Common `xml:"variant"`
} `xml:"identity"`
LocaleDisplayNames *LocaleDisplayNames `xml:"localeDisplayNames"`
Layout *struct {
Common
Orientation []*struct {
Common
Characters string `xml:"characters,attr"`
Lines string `xml:"lines,attr"`
CharacterOrder []*Common `xml:"characterOrder"`
LineOrder []*Common `xml:"lineOrder"`
} `xml:"orientation"`
InList []*struct {
Common
Casing string `xml:"casing,attr"`
} `xml:"inList"`
InText []*Common `xml:"inText"`
} `xml:"layout"`
ContextTransforms *struct {
Common
ContextTransformUsage []*struct {
Common
ContextTransform []*Common `xml:"contextTransform"`
} `xml:"contextTransformUsage"`
} `xml:"contextTransforms"`
Characters *struct {
Common
ExemplarCharacters []*Common `xml:"exemplarCharacters"`
Ellipsis []*Common `xml:"ellipsis"`
MoreInformation []*Common `xml:"moreInformation"`
Stopwords []*struct {
Common
StopwordList []*Common `xml:"stopwordList"`
} `xml:"stopwords"`
IndexLabels []*struct {
Common
IndexSeparator []*Common `xml:"indexSeparator"`
CompressedIndexSeparator []*Common `xml:"compressedIndexSeparator"`
IndexRangePattern []*Common `xml:"indexRangePattern"`
IndexLabelBefore []*Common `xml:"indexLabelBefore"`
IndexLabelAfter []*Common `xml:"indexLabelAfter"`
IndexLabel []*struct {
Common
IndexSource string `xml:"indexSource,attr"`
Priority string `xml:"priority,attr"`
} `xml:"indexLabel"`
} `xml:"indexLabels"`
Mapping []*struct {
Common
Registry string `xml:"registry,attr"`
} `xml:"mapping"`
ParseLenients []*struct {
Common
Scope string `xml:"scope,attr"`
Level string `xml:"level,attr"`
ParseLenient []*struct {
Common
Sample string `xml:"sample,attr"`
} `xml:"parseLenient"`
} `xml:"parseLenients"`
} `xml:"characters"`
Delimiters *struct {
Common
QuotationStart []*Common `xml:"quotationStart"`
QuotationEnd []*Common `xml:"quotationEnd"`
AlternateQuotationStart []*Common `xml:"alternateQuotationStart"`
AlternateQuotationEnd []*Common `xml:"alternateQuotationEnd"`
} `xml:"delimiters"`
Measurement *struct {
Common
MeasurementSystem []*Common `xml:"measurementSystem"`
PaperSize []*struct {
Common
Height []*Common `xml:"height"`
Width []*Common `xml:"width"`
} `xml:"paperSize"`
} `xml:"measurement"`
Dates *struct {
Common
LocalizedPatternChars []*Common `xml:"localizedPatternChars"`
DateRangePattern []*Common `xml:"dateRangePattern"`
Calendars *struct {
Common
Calendar []*Calendar `xml:"calendar"`
} `xml:"calendars"`
Fields *struct {
Common
Field []*struct {
Common
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
Relative []*Common `xml:"relative"`
RelativeTime []*struct {
Common
RelativeTimePattern []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"relativeTimePattern"`
} `xml:"relativeTime"`
RelativePeriod []*Common `xml:"relativePeriod"`
} `xml:"field"`
} `xml:"fields"`
TimeZoneNames *TimeZoneNames `xml:"timeZoneNames"`
} `xml:"dates"`
Numbers *Numbers `xml:"numbers"`
Units *struct {
Common
Unit []*struct {
Common
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
UnitPattern []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"unitPattern"`
PerUnitPattern []*Common `xml:"perUnitPattern"`
} `xml:"unit"`
UnitLength []*struct {
Common
CompoundUnit []*struct {
Common
CompoundUnitPattern []*Common `xml:"compoundUnitPattern"`
} `xml:"compoundUnit"`
Unit []*struct {
Common
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
UnitPattern []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"unitPattern"`
PerUnitPattern []*Common `xml:"perUnitPattern"`
} `xml:"unit"`
CoordinateUnit []*struct {
Common
CoordinateUnitPattern []*Common `xml:"coordinateUnitPattern"`
} `xml:"coordinateUnit"`
} `xml:"unitLength"`
DurationUnit []*struct {
Common
DurationUnitPattern []*Common `xml:"durationUnitPattern"`
} `xml:"durationUnit"`
} `xml:"units"`
ListPatterns *struct {
Common
ListPattern []*struct {
Common
ListPatternPart []*Common `xml:"listPatternPart"`
} `xml:"listPattern"`
} `xml:"listPatterns"`
Collations *struct {
Common
Version string `xml:"version,attr"`
DefaultCollation *Common `xml:"defaultCollation"`
Collation []*Collation `xml:"collation"`
} `xml:"collations"`
Posix *struct {
Common
Messages []*struct {
Common
Yesstr []*Common `xml:"yesstr"`
Nostr []*Common `xml:"nostr"`
Yesexpr []*Common `xml:"yesexpr"`
Noexpr []*Common `xml:"noexpr"`
} `xml:"messages"`
} `xml:"posix"`
CharacterLabels *struct {
Common
CharacterLabelPattern []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"characterLabelPattern"`
CharacterLabel []*Common `xml:"characterLabel"`
} `xml:"characterLabels"`
Segmentations *struct {
Common
Segmentation []*struct {
Common
Variables *struct {
Common
Variable []*struct {
Common
Id string `xml:"id,attr"`
} `xml:"variable"`
} `xml:"variables"`
SegmentRules *struct {
Common
Rule []*struct {
Common
Id string `xml:"id,attr"`
} `xml:"rule"`
} `xml:"segmentRules"`
Exceptions *struct {
Common
Exception []*Common `xml:"exception"`
} `xml:"exceptions"`
Suppressions *struct {
Common
Suppression []*Common `xml:"suppression"`
} `xml:"suppressions"`
} `xml:"segmentation"`
} `xml:"segmentations"`
Rbnf *struct {
Common
RulesetGrouping []*struct {
Common
Ruleset []*struct {
Common
Access string `xml:"access,attr"`
AllowsParsing string `xml:"allowsParsing,attr"`
Rbnfrule []*struct {
Common
Value string `xml:"value,attr"`
Radix string `xml:"radix,attr"`
Decexp string `xml:"decexp,attr"`
} `xml:"rbnfrule"`
} `xml:"ruleset"`
} `xml:"rulesetGrouping"`
} `xml:"rbnf"`
Annotations *struct {
Common
Annotation []*struct {
Common
Cp string `xml:"cp,attr"`
Tts string `xml:"tts,attr"`
} `xml:"annotation"`
} `xml:"annotations"`
Metadata *struct {
Common
CasingData *struct {
Common
CasingItem []*struct {
Common
Override string `xml:"override,attr"`
ForceError string `xml:"forceError,attr"`
} `xml:"casingItem"`
} `xml:"casingData"`
} `xml:"metadata"`
References *struct {
Common
Reference []*struct {
Common
Uri string `xml:"uri,attr"`
} `xml:"reference"`
} `xml:"references"`
}
// Collation contains rules that specify a certain sort-order,
// as a tailoring of the root order.
// The parsed rules are obtained by passing a RuleProcessor to Collation's
// Process method.
type Collation struct {
Common
Visibility string `xml:"visibility,attr"`
Base *Common `xml:"base"`
Import []*struct {
Common
Source string `xml:"source,attr"`
} `xml:"import"`
Settings *struct {
Common
Strength string `xml:"strength,attr"`
Alternate string `xml:"alternate,attr"`
Backwards string `xml:"backwards,attr"`
Normalization string `xml:"normalization,attr"`
CaseLevel string `xml:"caseLevel,attr"`
CaseFirst string `xml:"caseFirst,attr"`
HiraganaQuaternary string `xml:"hiraganaQuaternary,attr"`
MaxVariable string `xml:"maxVariable,attr"`
Numeric string `xml:"numeric,attr"`
Private string `xml:"private,attr"`
VariableTop string `xml:"variableTop,attr"`
Reorder string `xml:"reorder,attr"`
} `xml:"settings"`
SuppressContractions *Common `xml:"suppress_contractions"`
Optimize *Common `xml:"optimize"`
Cr []*Common `xml:"cr"`
rulesElem
}
// Calendar specifies the fields used for formatting and parsing dates and times.
// The month and quarter names are identified numerically, starting at 1.
// The day (of the week) names are identified with short strings, since there is
// no universally-accepted numeric designation.
type Calendar struct {
Common
Months *struct {
Common
MonthContext []*struct {
Common
MonthWidth []*struct {
Common
Month []*struct {
Common
Yeartype string `xml:"yeartype,attr"`
} `xml:"month"`
} `xml:"monthWidth"`
} `xml:"monthContext"`
} `xml:"months"`
MonthNames *struct {
Common
Month []*struct {
Common
Yeartype string `xml:"yeartype,attr"`
} `xml:"month"`
} `xml:"monthNames"`
MonthAbbr *struct {
Common
Month []*struct {
Common
Yeartype string `xml:"yeartype,attr"`
} `xml:"month"`
} `xml:"monthAbbr"`
MonthPatterns *struct {
Common
MonthPatternContext []*struct {
Common
MonthPatternWidth []*struct {
Common
MonthPattern []*Common `xml:"monthPattern"`
} `xml:"monthPatternWidth"`
} `xml:"monthPatternContext"`
} `xml:"monthPatterns"`
Days *struct {
Common
DayContext []*struct {
Common
DayWidth []*struct {
Common
Day []*Common `xml:"day"`
} `xml:"dayWidth"`
} `xml:"dayContext"`
} `xml:"days"`
DayNames *struct {
Common
Day []*Common `xml:"day"`
} `xml:"dayNames"`
DayAbbr *struct {
Common
Day []*Common `xml:"day"`
} `xml:"dayAbbr"`
Quarters *struct {
Common
QuarterContext []*struct {
Common
QuarterWidth []*struct {
Common
Quarter []*Common `xml:"quarter"`
} `xml:"quarterWidth"`
} `xml:"quarterContext"`
} `xml:"quarters"`
Week *struct {
Common
MinDays []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"minDays"`
FirstDay []*struct {
Common
Day string `xml:"day,attr"`
} `xml:"firstDay"`
WeekendStart []*struct {
Common
Day string `xml:"day,attr"`
Time string `xml:"time,attr"`
} `xml:"weekendStart"`
WeekendEnd []*struct {
Common
Day string `xml:"day,attr"`
Time string `xml:"time,attr"`
} `xml:"weekendEnd"`
} `xml:"week"`
Am []*Common `xml:"am"`
Pm []*Common `xml:"pm"`
DayPeriods *struct {
Common
DayPeriodContext []*struct {
Common
DayPeriodWidth []*struct {
Common
DayPeriod []*Common `xml:"dayPeriod"`
} `xml:"dayPeriodWidth"`
} `xml:"dayPeriodContext"`
} `xml:"dayPeriods"`
Eras *struct {
Common
EraNames *struct {
Common
Era []*Common `xml:"era"`
} `xml:"eraNames"`
EraAbbr *struct {
Common
Era []*Common `xml:"era"`
} `xml:"eraAbbr"`
EraNarrow *struct {
Common
Era []*Common `xml:"era"`
} `xml:"eraNarrow"`
} `xml:"eras"`
CyclicNameSets *struct {
Common
CyclicNameSet []*struct {
Common
CyclicNameContext []*struct {
Common
CyclicNameWidth []*struct {
Common
CyclicName []*Common `xml:"cyclicName"`
} `xml:"cyclicNameWidth"`
} `xml:"cyclicNameContext"`
} `xml:"cyclicNameSet"`
} `xml:"cyclicNameSets"`
DateFormats *struct {
Common
DateFormatLength []*struct {
Common
DateFormat []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
} `xml:"dateFormat"`
} `xml:"dateFormatLength"`
} `xml:"dateFormats"`
TimeFormats *struct {
Common
TimeFormatLength []*struct {
Common
TimeFormat []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
} `xml:"timeFormat"`
} `xml:"timeFormatLength"`
} `xml:"timeFormats"`
DateTimeFormats *struct {
Common
DateTimeFormatLength []*struct {
Common
DateTimeFormat []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
} `xml:"dateTimeFormat"`
} `xml:"dateTimeFormatLength"`
AvailableFormats []*struct {
Common
DateFormatItem []*struct {
Common
Id string `xml:"id,attr"`
Count string `xml:"count,attr"`
} `xml:"dateFormatItem"`
} `xml:"availableFormats"`
AppendItems []*struct {
Common
AppendItem []*struct {
Common
Request string `xml:"request,attr"`
} `xml:"appendItem"`
} `xml:"appendItems"`
IntervalFormats []*struct {
Common
IntervalFormatFallback []*Common `xml:"intervalFormatFallback"`
IntervalFormatItem []*struct {
Common
Id string `xml:"id,attr"`
GreatestDifference []*struct {
Common
Id string `xml:"id,attr"`
} `xml:"greatestDifference"`
} `xml:"intervalFormatItem"`
} `xml:"intervalFormats"`
} `xml:"dateTimeFormats"`
Fields []*struct {
Common
Field []*struct {
Common
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
Relative []*Common `xml:"relative"`
RelativeTime []*struct {
Common
RelativeTimePattern []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"relativeTimePattern"`
} `xml:"relativeTime"`
RelativePeriod []*Common `xml:"relativePeriod"`
} `xml:"field"`
} `xml:"fields"`
}
type TimeZoneNames struct {
Common
HourFormat []*Common `xml:"hourFormat"`
HoursFormat []*Common `xml:"hoursFormat"`
GmtFormat []*Common `xml:"gmtFormat"`
GmtZeroFormat []*Common `xml:"gmtZeroFormat"`
RegionFormat []*Common `xml:"regionFormat"`
FallbackFormat []*Common `xml:"fallbackFormat"`
FallbackRegionFormat []*Common `xml:"fallbackRegionFormat"`
AbbreviationFallback []*Common `xml:"abbreviationFallback"`
PreferenceOrdering []*Common `xml:"preferenceOrdering"`
SingleCountries []*struct {
Common
List string `xml:"list,attr"`
} `xml:"singleCountries"`
Zone []*struct {
Common
Long []*struct {
Common
Generic []*Common `xml:"generic"`
Standard []*Common `xml:"standard"`
Daylight []*Common `xml:"daylight"`
} `xml:"long"`
Short []*struct {
Common
Generic []*Common `xml:"generic"`
Standard []*Common `xml:"standard"`
Daylight []*Common `xml:"daylight"`
} `xml:"short"`
CommonlyUsed []*struct {
Common
Used string `xml:"used,attr"`
} `xml:"commonlyUsed"`
ExemplarCity []*Common `xml:"exemplarCity"`
} `xml:"zone"`
Metazone []*struct {
Common
Long []*struct {
Common
Generic []*Common `xml:"generic"`
Standard []*Common `xml:"standard"`
Daylight []*Common `xml:"daylight"`
} `xml:"long"`
Short []*struct {
Common
Generic []*Common `xml:"generic"`
Standard []*Common `xml:"standard"`
Daylight []*Common `xml:"daylight"`
} `xml:"short"`
CommonlyUsed []*struct {
Common
Used string `xml:"used,attr"`
} `xml:"commonlyUsed"`
} `xml:"metazone"`
}
// LocaleDisplayNames specifies localized display names for for scripts, languages,
// countries, currencies, and variants.
type LocaleDisplayNames struct {
Common
LocaleDisplayPattern *struct {
Common
LocalePattern []*Common `xml:"localePattern"`
LocaleSeparator []*Common `xml:"localeSeparator"`
LocaleKeyTypePattern []*Common `xml:"localeKeyTypePattern"`
} `xml:"localeDisplayPattern"`
Languages *struct {
Common
Language []*Common `xml:"language"`
} `xml:"languages"`
Scripts *struct {
Common
Script []*Common `xml:"script"`
} `xml:"scripts"`
Territories *struct {
Common
Territory []*Common `xml:"territory"`
} `xml:"territories"`
Subdivisions *struct {
Common
Subdivision []*Common `xml:"subdivision"`
} `xml:"subdivisions"`
Variants *struct {
Common
Variant []*Common `xml:"variant"`
} `xml:"variants"`
Keys *struct {
Common
Key []*Common `xml:"key"`
} `xml:"keys"`
Types *struct {
Common
Type []*struct {
Common
Key string `xml:"key,attr"`
} `xml:"type"`
} `xml:"types"`
TransformNames *struct {
Common
TransformName []*Common `xml:"transformName"`
} `xml:"transformNames"`
MeasurementSystemNames *struct {
Common
MeasurementSystemName []*Common `xml:"measurementSystemName"`
} `xml:"measurementSystemNames"`
CodePatterns *struct {
Common
CodePattern []*Common `xml:"codePattern"`
} `xml:"codePatterns"`
}
// Numbers supplies information for formatting and parsing numbers and currencies.
type Numbers struct {
Common
DefaultNumberingSystem []*Common `xml:"defaultNumberingSystem"`
OtherNumberingSystems []*struct {
Common
Native []*Common `xml:"native"`
Traditional []*Common `xml:"traditional"`
Finance []*Common `xml:"finance"`
} `xml:"otherNumberingSystems"`
MinimumGroupingDigits []*Common `xml:"minimumGroupingDigits"`
Symbols []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
Decimal []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"decimal"`
Group []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"group"`
List []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"list"`
PercentSign []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"percentSign"`
NativeZeroDigit []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"nativeZeroDigit"`
PatternDigit []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"patternDigit"`
PlusSign []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"plusSign"`
MinusSign []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"minusSign"`
Exponential []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"exponential"`
SuperscriptingExponent []*Common `xml:"superscriptingExponent"`
PerMille []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"perMille"`
Infinity []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"infinity"`
Nan []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"nan"`
CurrencyDecimal []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"currencyDecimal"`
CurrencyGroup []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"currencyGroup"`
TimeSeparator []*Common `xml:"timeSeparator"`
} `xml:"symbols"`
DecimalFormats []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
DecimalFormatLength []*struct {
Common
DecimalFormat []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
} `xml:"decimalFormat"`
} `xml:"decimalFormatLength"`
} `xml:"decimalFormats"`
ScientificFormats []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
ScientificFormatLength []*struct {
Common
ScientificFormat []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
} `xml:"scientificFormat"`
} `xml:"scientificFormatLength"`
} `xml:"scientificFormats"`
PercentFormats []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
PercentFormatLength []*struct {
Common
PercentFormat []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
} `xml:"percentFormat"`
} `xml:"percentFormatLength"`
} `xml:"percentFormats"`
CurrencyFormats []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
CurrencySpacing []*struct {
Common
BeforeCurrency []*struct {
Common
CurrencyMatch []*Common `xml:"currencyMatch"`
SurroundingMatch []*Common `xml:"surroundingMatch"`
InsertBetween []*Common `xml:"insertBetween"`
} `xml:"beforeCurrency"`
AfterCurrency []*struct {
Common
CurrencyMatch []*Common `xml:"currencyMatch"`
SurroundingMatch []*Common `xml:"surroundingMatch"`
InsertBetween []*Common `xml:"insertBetween"`
} `xml:"afterCurrency"`
} `xml:"currencySpacing"`
CurrencyFormatLength []*struct {
Common
CurrencyFormat []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
} `xml:"currencyFormat"`
} `xml:"currencyFormatLength"`
UnitPattern []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"unitPattern"`
} `xml:"currencyFormats"`
Currencies *struct {
Common
Currency []*struct {
Common
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
DisplayName []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"displayName"`
Symbol []*Common `xml:"symbol"`
Decimal []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"decimal"`
Group []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
} `xml:"group"`
} `xml:"currency"`
} `xml:"currencies"`
MiscPatterns []*struct {
Common
NumberSystem string `xml:"numberSystem,attr"`
Pattern []*struct {
Common
Numbers string `xml:"numbers,attr"`
Count string `xml:"count,attr"`
} `xml:"pattern"`
} `xml:"miscPatterns"`
MinimalPairs []*struct {
Common
PluralMinimalPairs []*struct {
Common
Count string `xml:"count,attr"`
} `xml:"pluralMinimalPairs"`
OrdinalMinimalPairs []*struct {
Common
Ordinal string `xml:"ordinal,attr"`
} `xml:"ordinalMinimalPairs"`
} `xml:"minimalPairs"`
}
// Version is the version of CLDR from which the XML definitions are generated.
const Version = "32"
|