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
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
|
# Translation of `iso_3166_1' messages to Walloon.
# Copyright (C) 2004 Free Software Foundation, Inc.
# Pablo Saratxaga <pablo@walon.org>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: iso_3166 3.5\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-devel@lists.alioth."
"debian.org>\n"
"POT-Creation-Date: 2008-10-18 10:19+0200\n"
"PO-Revision-Date: 2007-08-28 17:47+0200\n"
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
"Language-Team: Walloon <linux-wa@walon.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
#. name for AFG
msgid "Afghanistan"
msgstr "Afganistan"
#. official_name for AFG
msgid "Islamic Republic of Afghanistan"
msgstr "Republike Islamike d' Afganistan"
#. name for ALA
msgid "Åland Islands"
msgstr "Iyes Åland"
#. name for ALB
msgid "Albania"
msgstr "Albaneye"
#. official_name for ALB
msgid "Republic of Albania"
msgstr "Republike d' Albaneye"
#. name for DZA
msgid "Algeria"
msgstr "Aldjereye"
#. official_name for DZA
msgid "People's Democratic Republic of Algeria"
msgstr "Republike Democratike et Populaire d' Aldjereye"
#. name for ASM
msgid "American Samoa"
msgstr "Samowa amerikinne"
#. name for AND
msgid "Andorra"
msgstr "Andore"
#. official_name for AND
msgid "Principality of Andorra"
msgstr "Principåté d' Andore"
#. name for AGO
msgid "Angola"
msgstr "Angola"
#. official_name for AGO
msgid "Republic of Angola"
msgstr "Republike d' Angola"
#. name for AIA
msgid "Anguilla"
msgstr "Anguila"
#. name for ATA
msgid "Antarctica"
msgstr "Antartike"
#. name for ATG
msgid "Antigua and Barbuda"
msgstr "Antigua eyet Barbuda"
#. name for ARG
msgid "Argentina"
msgstr "Årdjintene"
#. official_name for ARG
msgid "Argentine Republic"
msgstr "Republike Årdjintene"
#. name for ARM
msgid "Armenia"
msgstr "Årmeneye"
#. official_name for ARM
msgid "Republic of Armenia"
msgstr "Republike d' Årmeneye"
#. name for ABW
msgid "Aruba"
msgstr "Arouba"
#. name for AUS
msgid "Australia"
msgstr "Ostraleye"
#. name for AUT
msgid "Austria"
msgstr "Otriche"
#. official_name for AUT
msgid "Republic of Austria"
msgstr "Republike d' Otriche"
#. name for AZE
msgid "Azerbaijan"
msgstr "Azerbaydjan"
#. official_name for AZE
msgid "Republic of Azerbaijan"
msgstr "Republike d' Azerbaydjan"
#. name for BHS
msgid "Bahamas"
msgstr "Bahamas"
#. official_name for BHS
msgid "Commonwealth of the Bahamas"
msgstr "Cominålté des Bahamas"
#
#. name for BHR
msgid "Bahrain"
msgstr "Bareyn"
#. official_name for BHR
msgid "Kingdom of Bahrain"
msgstr "Rweyåme do Bareyn"
#. name for BGD
msgid "Bangladesh"
msgstr "Bangladesh"
#. official_name for BGD
msgid "People's Republic of Bangladesh"
msgstr "Republike Populaire do Bangladesh"
#. name for BRB
msgid "Barbados"
msgstr "Bårbades"
#
#. name for BLR
msgid "Belarus"
msgstr "Belaruss"
#. official_name for BLR
msgid "Republic of Belarus"
msgstr "Republike do Belaruss"
#. name for BEL
msgid "Belgium"
msgstr "Beldjike"
#. official_name for BEL
msgid "Kingdom of Belgium"
msgstr "Rweyåme di Beldjike"
#
#. name for BLZ
msgid "Belize"
msgstr "Belize"
#. name for BEN
msgid "Benin"
msgstr "Benin"
#. official_name for BEN
msgid "Republic of Benin"
msgstr "Republike do Benin"
#. name for BMU
msgid "Bermuda"
msgstr "Bermudes"
#. name for BTN
msgid "Bhutan"
msgstr "Boutan"
#. official_name for BTN
msgid "Kingdom of Bhutan"
msgstr "Rweyåme do Boutan"
#. name for BOL
msgid "Bolivia"
msgstr "Boliveye"
#. official_name for BOL
msgid "Republic of Bolivia"
msgstr "Republike di Boliveye"
#. name for BIH
msgid "Bosnia and Herzegovina"
msgstr "Bosneye"
#. official_name for BIH
msgid "Republic of Bosnia and Herzegovina"
msgstr "Republike di Bosneye ey Herzegovine"
#. name for BWA
msgid "Botswana"
msgstr "Boswana"
#. official_name for BWA
msgid "Republic of Botswana"
msgstr "Republike do Boswana"
#. name for BVT
msgid "Bouvet Island"
msgstr "Iye Bouvet"
#. name for BRA
msgid "Brazil"
msgstr "Braezi"
#. official_name for BRA
msgid "Federative Republic of Brazil"
msgstr "Republike Federative do Braezi"
#. name for IOT
msgid "British Indian Ocean Territory"
msgstr "Teritweres britanikes di l' Oceyan Indyin"
#. name for BRN
msgid "Brunei Darussalam"
msgstr "Bruney"
#. name for BGR
msgid "Bulgaria"
msgstr "Bulgåreye"
#. official_name for BGR
msgid "Republic of Bulgaria"
msgstr "Republike di Bulgåreye"
#. name for BFA
msgid "Burkina Faso"
msgstr "Bourkina Fasso"
#. name for BDI
msgid "Burundi"
msgstr "Bouroundi"
#. official_name for BDI
msgid "Republic of Burundi"
msgstr "Republike do Bourondi"
#. name for KHM
msgid "Cambodia"
msgstr "Cambodje"
#. official_name for KHM
msgid "Kingdom of Cambodia"
msgstr "Rweyåme do Cambodje"
#. name for CMR
msgid "Cameroon"
msgstr "Camrone"
#. official_name for CMR
msgid "Republic of Cameroon"
msgstr "Republike do Camrone"
#. name for CAN
msgid "Canada"
msgstr "Canada"
#. name for CPV
msgid "Cape Verde"
msgstr "Cap Vert"
#. official_name for CPV
msgid "Republic of Cape Verde"
msgstr "Republke do Cap Vert"
#. name for CYM
msgid "Cayman Islands"
msgstr "Iyes Cayman"
#. name for CAF
msgid "Central African Republic"
msgstr "Cintrafrike"
#
#. name for TCD
msgid "Chad"
msgstr "Tchad"
#. official_name for TCD
msgid "Republic of Chad"
msgstr "Republike do Tchad"
#. name for CHL
msgid "Chile"
msgstr "Tchili"
#. official_name for CHL
msgid "Republic of Chile"
msgstr "Republike do Tchili"
#. name for CHN
msgid "China"
msgstr "Chine"
#. official_name for CHN
msgid "People's Republic of China"
msgstr "Republike Populaire di Chine"
#. name for CXR
msgid "Christmas Island"
msgstr "Iye Christmas"
#. name for CCK
msgid "Cocos (Keeling) Islands"
msgstr "Iyes Cocos (Keeling)"
#. name for COL
msgid "Colombia"
msgstr "Colombeye"
#. official_name for COL
msgid "Republic of Colombia"
msgstr "Republike di Colombeye"
#. name for COM
msgid "Comoros"
msgstr "Comores"
#. official_name for COM
msgid "Union of the Comoros"
msgstr "Union des Comores"
#. name for COG
msgid "Congo"
msgstr "Congo-Brazza"
#. official_name for COG
msgid "Republic of the Congo"
msgstr "Republike do Congo"
#. name for COD
msgid "Congo, The Democratic Republic of the"
msgstr "Congo-Kinshasa, Republike Democratike do Congo"
#. name for COK
msgid "Cook Islands"
msgstr "Iyes Cook"
#. name for CRI
msgid "Costa Rica"
msgstr "Costa Rica"
#. official_name for CRI
msgid "Republic of Costa Rica"
msgstr "Republike do Costa Rica"
#. name for CIV
msgid "Côte d'Ivoire"
msgstr "Coisse d' Ivwere"
#. official_name for CIV
msgid "Republic of Côte d'Ivoire"
msgstr "Republike di Coisse d' Ivwere"
#. name for HRV
msgid "Croatia"
msgstr "Crowåceye"
#. official_name for HRV
msgid "Republic of Croatia"
msgstr "Republike di Crowåceye"
#. name for CUB
msgid "Cuba"
msgstr "Cuba"
#. official_name for CUB
msgid "Republic of Cuba"
msgstr "Republike di Cuba"
#. name for CYP
msgid "Cyprus"
msgstr "Chipe"
#. official_name for CYP
msgid "Republic of Cyprus"
msgstr "Republike di Chipe"
#. name for CZE
msgid "Czech Republic"
msgstr "Tchekeye"
#. name for DNK
msgid "Denmark"
msgstr "Daenmåtche"
#. official_name for DNK
msgid "Kingdom of Denmark"
msgstr "Rweyåme do Daenmåtche"
#. name for DJI
msgid "Djibouti"
msgstr "Djibouti"
#. official_name for DJI
msgid "Republic of Djibouti"
msgstr "Republike di Djibouti"
#. name for DMA
msgid "Dominica"
msgstr "Dominike"
#. official_name for DMA
msgid "Commonwealth of Dominica"
msgstr "Cominålté di Dominike"
#. name for DOM
msgid "Dominican Republic"
msgstr "Republike Dominikinne"
#. name for ECU
msgid "Ecuador"
msgstr "Ecwåteur"
#. official_name for ECU
msgid "Republic of Ecuador"
msgstr "Republike d' Ecwåteur"
#
#. name for EGY
msgid "Egypt"
msgstr "Edjipe"
#. official_name for EGY
msgid "Arab Republic of Egypt"
msgstr "Republike Arabe d' Edjipe"
#. name for SLV
msgid "El Salvador"
msgstr "El Salvador"
#. official_name for SLV
msgid "Republic of El Salvador"
msgstr "Republike d' El Salvador"
#. name for GNQ
msgid "Equatorial Guinea"
msgstr "Guinêye Ecwåtoriåle"
#. official_name for GNQ
msgid "Republic of Equatorial Guinea"
msgstr "Republike di Guinêye Ecwåtoriåle"
#. name for ERI
msgid "Eritrea"
msgstr "Eritrêye"
#. name for EST
msgid "Estonia"
msgstr "Estoneye"
#. official_name for EST
msgid "Republic of Estonia"
msgstr "Republike d' Estoneye"
#. name for ETH, historic names for ETH (withdrawn 1993-07-16)
msgid "Ethiopia"
msgstr "Etiopeye"
#. official_name for ETH
msgid "Federal Democratic Republic of Ethiopia"
msgstr "Republike Democratike Federåle d' Etiopeye"
#. name for FLK
msgid "Falkland Islands (Malvinas)"
msgstr "Iyes Malouwines"
#. name for FRO
msgid "Faroe Islands"
msgstr "Iyes Faeroyé"
#. name for FJI
msgid "Fiji"
msgstr "Fidji"
#. official_name for FJI
msgid "Republic of the Fiji Islands"
msgstr "Republike des Iyes Fidji"
#. name for FIN
msgid "Finland"
msgstr "Finlande"
#. official_name for FIN
msgid "Republic of Finland"
msgstr "Republike di Finlande"
#. name for FRA
msgid "France"
msgstr "France"
#. official_name for FRA
msgid "French Republic"
msgstr "Republike Francesse"
#. name for GUF
msgid "French Guiana"
msgstr "Guyane francesse"
#. name for PYF
msgid "French Polynesia"
msgstr "Polinezeye francesse"
#. name for ATF
msgid "French Southern Territories"
msgstr "Teritweres francès do sud"
#. name for GAB
msgid "Gabon"
msgstr "Gabon"
#. official_name for GAB
msgid "Gabonese Republic"
msgstr "Republike Gabonesse"
#. name for GMB
msgid "Gambia"
msgstr "Gambeye"
#. official_name for GMB
msgid "Republic of the Gambia"
msgstr "Republike del Gambeye"
#. name for GEO
msgid "Georgia"
msgstr "Djeyordjeye"
#. name for DEU
msgid "Germany"
msgstr "Almagne"
#. official_name for DEU
msgid "Federal Republic of Germany"
msgstr "Republike Federåle d' Almagne"
#. name for GHA
msgid "Ghana"
msgstr "Gana"
#. official_name for GHA
msgid "Republic of Ghana"
msgstr "Republike do Gana"
#. name for GIB
msgid "Gibraltar"
msgstr "Djibraltar"
#. name for GRC
msgid "Greece"
msgstr "Grece"
#. official_name for GRC
msgid "Hellenic Republic"
msgstr "Republike Helenike"
#. name for GRL
msgid "Greenland"
msgstr "Groenlande"
#. name for GRD
msgid "Grenada"
msgstr "Grenåde"
#. name for GLP
msgid "Guadeloupe"
msgstr "Gwadeloupe"
#. name for GUM
msgid "Guam"
msgstr "Gwam"
#. name for GTM
msgid "Guatemala"
msgstr "Gwatemala"
#. official_name for GTM
msgid "Republic of Guatemala"
msgstr "Republike do Gwatemala"
#. name for GGY
msgid "Guernsey"
msgstr "Guernsey"
#. name for GIN
msgid "Guinea"
msgstr "Guinêye"
#. official_name for GIN
msgid "Republic of Guinea"
msgstr "Republike di Guinêye"
#. name for GNB
msgid "Guinea-Bissau"
msgstr "Guinêye-Bissaw"
#. official_name for GNB
msgid "Republic of Guinea-Bissau"
msgstr "Republike di Guinêye-Bissaw"
#. name for GUY
msgid "Guyana"
msgstr "Guyana"
#. official_name for GUY
msgid "Republic of Guyana"
msgstr "Republike di Guyana"
#. name for HTI
msgid "Haiti"
msgstr "Hayiti"
#. official_name for HTI
msgid "Republic of Haiti"
msgstr "Republike di Hayiti"
#. name for HMD
msgid "Heard Island and McDonald Islands"
msgstr "Iyeas Heard et McDonald"
#. name for VAT
msgid "Holy See (Vatican City State)"
msgstr "Vatican"
#. name for HND
msgid "Honduras"
msgstr "Honduras"
#. official_name for HND
msgid "Republic of Honduras"
msgstr "Republike do Honduras"
#. name for HKG
msgid "Hong Kong"
msgstr "Hong Kong"
#. official_name for HKG
msgid "Hong Kong Special Administrative Region of China"
msgstr "Redjon Administrative Sipeciåle Chinwesse di Hong Kong"
#. name for HUN
msgid "Hungary"
msgstr "Hongreye"
#. official_name for HUN
msgid "Republic of Hungary"
msgstr "Republike di Hongreye"
#. name for ISL
msgid "Iceland"
msgstr "Izlande"
#. official_name for ISL
msgid "Republic of Iceland"
msgstr "Republike d' Izlande"
#
#. name for IND
msgid "India"
msgstr "Inde"
#. official_name for IND
msgid "Republic of India"
msgstr "Republike d' Inde"
#
#. name for IDN
msgid "Indonesia"
msgstr "Indonezeye"
#
#. official_name for IDN
msgid "Republic of Indonesia"
msgstr "Republike d' Indonezeye"
#. name for IRN
msgid "Iran, Islamic Republic of"
msgstr "Iran"
#. official_name for IRN
msgid "Islamic Republic of Iran"
msgstr "Republike Islamike d' Iran"
#. name for IRQ
msgid "Iraq"
msgstr "Irak"
#. official_name for IRQ
msgid "Republic of Iraq"
msgstr "Republike d' Irak"
#. name for IRL
msgid "Ireland"
msgstr "Irlande"
#. name for IMN
msgid "Isle of Man"
msgstr "Iye di Man"
#. name for ISR
msgid "Israel"
msgstr "Israyel"
#. official_name for ISR
msgid "State of Israel"
msgstr "Estat d' Israyel"
#. name for ITA
msgid "Italy"
msgstr "Itåleye"
#. official_name for ITA
msgid "Italian Republic"
msgstr "Republike Itålyinne"
#. name for JAM
msgid "Jamaica"
msgstr "Djamayike"
#. name for JPN
msgid "Japan"
msgstr "Djapon"
#. name for JEY
msgid "Jersey"
msgstr "Djersey"
#. name for JOR
msgid "Jordan"
msgstr "Djordaneye"
#. official_name for JOR
msgid "Hashemite Kingdom of Jordan"
msgstr "Rweyåme Hashemite di Djordaneye"
#. name for KAZ
msgid "Kazakhstan"
msgstr "Kazaxhtan"
#. official_name for KAZ
msgid "Republic of Kazakhstan"
msgstr "Republike do Kazaxhtan"
#. name for KEN
msgid "Kenya"
msgstr "Kenia"
#. official_name for KEN
msgid "Republic of Kenya"
msgstr "Republike do Kenia"
#. name for KIR
msgid "Kiribati"
msgstr "Kiribati"
#. official_name for KIR
msgid "Republic of Kiribati"
msgstr "Republike di Kiribati"
#. name for PRK
msgid "Korea, Democratic People's Republic of"
msgstr "Corêye (bijhrece)"
#. official_name for PRK
msgid "Democratic People's Republic of Korea"
msgstr "Republike Populaire Democratike di Corêye"
#. name for KOR
msgid "Korea, Republic of"
msgstr "Corêye (nonnrece)"
#. name for KWT
msgid "Kuwait"
msgstr "Kuweyt"
#. official_name for KWT
msgid "State of Kuwait"
msgstr "Estat do Kuweyt"
#. name for KGZ
msgid "Kyrgyzstan"
msgstr "Kirguiztan"
#. official_name for KGZ
msgid "Kyrgyz Republic"
msgstr "Republike Kirguize"
#. name for LAO
msgid "Lao People's Democratic Republic"
msgstr "Laosse"
#. name for LVA
msgid "Latvia"
msgstr "Letoneye"
#. official_name for LVA
msgid "Republic of Latvia"
msgstr "Republike di Letoneye"
#. name for LBN
msgid "Lebanon"
msgstr "Liban"
#. official_name for LBN
msgid "Lebanese Republic"
msgstr "Republike Libanesse"
#. name for LSO
msgid "Lesotho"
msgstr "Lessoto"
#. official_name for LSO
msgid "Kingdom of Lesotho"
msgstr "Rweyåme do Lessoto"
#. name for LBR
msgid "Liberia"
msgstr "Liberia"
#. official_name for LBR
msgid "Republic of Liberia"
msgstr "Republike do Liberia"
#. name for LBY
msgid "Libyan Arab Jamahiriya"
msgstr "Libeye"
#. official_name for LBY
msgid "Socialist People's Libyan Arab Jamahiriya"
msgstr "Jamahiriya Arabe Libyinne Socialisse Populaire"
#. name for LIE
msgid "Liechtenstein"
msgstr "Lîchtensteyn"
#. official_name for LIE
msgid "Principality of Liechtenstein"
msgstr "Principåté do Lîchtensteyn"
#. name for LTU
msgid "Lithuania"
msgstr "Litwaneye"
#. official_name for LTU
msgid "Republic of Lithuania"
msgstr "Republike di Litwaneye"
#. name for LUX
msgid "Luxembourg"
msgstr "Lussimbork"
#. official_name for LUX
msgid "Grand Duchy of Luxembourg"
msgstr "Grande Dutcheye do Lussimbork"
#
#. name for MAC
msgid "Macao"
msgstr "Macao"
#. official_name for MAC
msgid "Macao Special Administrative Region of China"
msgstr "Redjon Administrative Sipeciåle Chinwesse di Macao"
#. name for MKD
msgid "Macedonia, Republic of"
msgstr "Macedoneye"
#. official_name for MKD
msgid "The Former Yugoslav Republic of Macedonia"
msgstr "Republike di Macedoneye (Ancyinne Republike Yougoslave di)"
#. name for MDG
msgid "Madagascar"
msgstr "Madagascar"
#. official_name for MDG
msgid "Republic of Madagascar"
msgstr "Republike di Madagascar"
#. name for MWI
msgid "Malawi"
msgstr "Malawi"
#. official_name for MWI
msgid "Republic of Malawi"
msgstr "Republike do Malawi"
#. name for MYS
msgid "Malaysia"
msgstr "Malaizeye"
#. name for MDV
msgid "Maldives"
msgstr "Maldives"
#. official_name for MDV
msgid "Republic of Maldives"
msgstr "Republike des Maldives"
#. name for MLI
msgid "Mali"
msgstr "Mali"
#. official_name for MLI
msgid "Republic of Mali"
msgstr "Republike do Mali"
#. name for MLT
msgid "Malta"
msgstr "Male"
#. official_name for MLT
msgid "Republic of Malta"
msgstr "Republike di Male"
#. name for MHL
msgid "Marshall Islands"
msgstr "Iyes Marshall"
#. official_name for MHL
msgid "Republic of the Marshall Islands"
msgstr "Republike des Iyes Marshall"
#. name for MTQ
msgid "Martinique"
msgstr "Martinike"
#. name for MRT
msgid "Mauritania"
msgstr "Moritanreye"
#. official_name for MRT
msgid "Islamic Republic of Mauritania"
msgstr "Republike Islamike di Moritanreye"
#. name for MUS
msgid "Mauritius"
msgstr "Iye Môrice"
#. official_name for MUS
msgid "Republic of Mauritius"
msgstr "Republike di l' Iye Môrice"
#. name for MYT
msgid "Mayotte"
msgstr "Mayote"
#. name for MEX
msgid "Mexico"
msgstr "Mecsike"
#. official_name for MEX
msgid "United Mexican States"
msgstr "Estats Unis Mecsikins"
#. name for FSM
msgid "Micronesia, Federated States of"
msgstr "Micronezeye"
#. official_name for FSM
msgid "Federated States of Micronesia"
msgstr "Estats Federés di Micronezeye"
#. name for MDA
msgid "Moldova"
msgstr ""
#. official_name for MDA
msgid "Republic of Moldova"
msgstr "Republike di Moldova"
#. name for MCO
msgid "Monaco"
msgstr "Monaco"
#. official_name for MCO
msgid "Principality of Monaco"
msgstr "Principåté di Monaco"
#. name for MNG
msgid "Mongolia"
msgstr "Mongoleye"
#. name for MNE, official_name for MNE
msgid "Montenegro"
msgstr "Montenegro"
#. name for MSR
msgid "Montserrat"
msgstr "Montserrat"
#. name for MAR
msgid "Morocco"
msgstr "Marok"
#. official_name for MAR
msgid "Kingdom of Morocco"
msgstr "Rweyåme do Marok"
#. name for MOZ
msgid "Mozambique"
msgstr "Mozambike"
#. official_name for MOZ
msgid "Republic of Mozambique"
msgstr "Republike do Mozambike"
#. name for MMR
msgid "Myanmar"
msgstr "Birmaneye"
#. official_name for MMR
msgid "Union of Myanmar"
msgstr "Union do Mianmar"
#. name for NAM
msgid "Namibia"
msgstr "Namibeye"
#. official_name for NAM
msgid "Republic of Namibia"
msgstr "Republike di Namibeye"
#. name for NRU
msgid "Nauru"
msgstr "Nawouro"
#. official_name for NRU
msgid "Republic of Nauru"
msgstr "Republike di Nawouro"
#. name for NPL
msgid "Nepal"
msgstr "Nepal"
#. official_name for NPL
#, fuzzy
msgid "Federal Democratic Republic of Nepal"
msgstr "Republike Democratike Federåle d' Etiopeye"
#. name for NLD
msgid "Netherlands"
msgstr "Bas Payis"
#. official_name for NLD
msgid "Kingdom of the Netherlands"
msgstr "Rweyåme des Bas Payis"
#. name for ANT, historic names for ANT (withdrawn 1993-07-12)
msgid "Netherlands Antilles"
msgstr "Antiyes neyerlandesses"
#. name for NCL
msgid "New Caledonia"
msgstr "Nouve Caledoneye"
#. name for NZL
msgid "New Zealand"
msgstr "Nouve Zelande"
#
#. name for NIC
msgid "Nicaragua"
msgstr "Nicaragwa"
#
#. official_name for NIC
msgid "Republic of Nicaragua"
msgstr "Republike do Nicaragwa"
#. name for NER
msgid "Niger"
msgstr "Nidjer"
#. official_name for NER
msgid "Republic of the Niger"
msgstr "Republike do Nidjer"
#. name for NGA
msgid "Nigeria"
msgstr "Nidjeria"
#. official_name for NGA
msgid "Federal Republic of Nigeria"
msgstr "Republike Federåle do Nidjeria"
#. name for NIU
msgid "Niue"
msgstr "Niuwé"
#. official_name for NIU
msgid "Republic of Niue"
msgstr "Republike di Niuwé"
#. name for NFK
msgid "Norfolk Island"
msgstr "Iye Norfolk"
#. name for MNP
msgid "Northern Mariana Islands"
msgstr "Iyes Marianes bijhreces"
#. official_name for MNP
msgid "Commonwealth of the Northern Mariana Islands"
msgstr "Cominålté des Iyes Marianes Bijhreces"
#. name for NOR
msgid "Norway"
msgstr "Norvedje"
#. official_name for NOR
msgid "Kingdom of Norway"
msgstr "Rweyåme di Norvedje"
#. name for OMN
msgid "Oman"
msgstr "Oman"
#. official_name for OMN
msgid "Sultanate of Oman"
msgstr "Sultanat d' Oman"
#. name for PAK
msgid "Pakistan"
msgstr "Pakistan"
#. official_name for PAK
msgid "Islamic Republic of Pakistan"
msgstr "Republike Islamike do Pakistan"
#
#. name for PLW
msgid "Palau"
msgstr "Palawou"
#. official_name for PLW
msgid "Republic of Palau"
msgstr "Republike di Palawou"
#. name for PSE
msgid "Palestinian Territory, Occupied"
msgstr "Palestene"
#. official_name for PSE
msgid "Occupied Palestinian Territory"
msgstr "Teritweres Ocupés di Palestene"
#. name for PAN
msgid "Panama"
msgstr "Panama"
#. official_name for PAN
msgid "Republic of Panama"
msgstr "Republike di Panama"
#. name for PNG
msgid "Papua New Guinea"
msgstr "Papouwazeye Nouve Guinêye"
#. name for PRY
msgid "Paraguay"
msgstr "Paragway"
#. official_name for PRY
msgid "Republic of Paraguay"
msgstr "Republike do Paragway"
#
#. name for PER
msgid "Peru"
msgstr "Perou"
#. official_name for PER
msgid "Republic of Peru"
msgstr "Republike do Perou"
#. name for PHL
msgid "Philippines"
msgstr "Filipenes"
#. official_name for PHL
msgid "Republic of the Philippines"
msgstr "Republike des Filipenes"
#. name for PCN
msgid "Pitcairn"
msgstr "Pitcairn"
#. name for POL
msgid "Poland"
msgstr "Pologne"
#. official_name for POL
msgid "Republic of Poland"
msgstr "Republike di Pologne"
#. name for PRT
msgid "Portugal"
msgstr "Portugal"
#. official_name for PRT
msgid "Portuguese Republic"
msgstr "Reublike Portuguesse"
#. name for PRI
msgid "Puerto Rico"
msgstr "Porto Rico"
#. name for QAT
msgid "Qatar"
msgstr "Katar"
#. official_name for QAT
msgid "State of Qatar"
msgstr "Estat do Katar"
#. name for REU
msgid "Reunion"
msgstr "Reyunion"
#. name for ROU
msgid "Romania"
msgstr "Roumaneye"
#. name for RUS
msgid "Russian Federation"
msgstr "Rûsseye"
#
#. name for RWA
msgid "Rwanda"
msgstr "Rwanda"
#. official_name for RWA
msgid "Rwandese Republic"
msgstr "Republike Rwandesse"
#. name for BLM
msgid "Saint Barthélemy"
msgstr ""
#. name for SHN
msgid "Saint Helena"
msgstr "Sinte Helene"
#. name for KNA
msgid "Saint Kitts and Nevis"
msgstr "St Kitts & Nevis"
#. name for LCA
msgid "Saint Lucia"
msgstr "Sinte Luceye"
#. name for MAF
msgid "Saint Martin (French part)"
msgstr ""
#. name for SPM
msgid "Saint Pierre and Miquelon"
msgstr "Sint Pierre et Miquelon"
#. name for VCT
msgid "Saint Vincent and the Grenadines"
msgstr "Sint Vincint et les Grenadines"
#. name for WSM
msgid "Samoa"
msgstr "Samowa"
#. official_name for WSM
msgid "Independent State of Samoa"
msgstr "Estat Indepindant di Samowa"
#. name for SMR
msgid "San Marino"
msgstr "Sint Marin"
#. official_name for SMR
msgid "Republic of San Marino"
msgstr "Republike di Sint Marin"
#. name for STP
msgid "Sao Tome and Principe"
msgstr "São Tomé et Prince"
#. official_name for STP
msgid "Democratic Republic of Sao Tome and Principe"
msgstr "Republike Democratike di São Tomé et Prince"
#. name for SAU
msgid "Saudi Arabia"
msgstr "Arabeye Sawoudite"
#. official_name for SAU
msgid "Kingdom of Saudi Arabia"
msgstr "Rweyåme d' Arabeye Sawoudite"
#. name for SEN
msgid "Senegal"
msgstr "Senegål"
#. official_name for SEN
msgid "Republic of Senegal"
msgstr "Republike do Senegål"
#. name for SRB
msgid "Serbia"
msgstr "Serbeye"
#. official_name for SRB
msgid "Republic of Serbia"
msgstr "Republike di Serbeye"
#. name for SYC
msgid "Seychelles"
msgstr "Seycheles"
#. official_name for SYC
msgid "Republic of Seychelles"
msgstr "Republike des Seycheles"
#. name for SLE
msgid "Sierra Leone"
msgstr "Siera Leyone"
#. official_name for SLE
msgid "Republic of Sierra Leone"
msgstr "Republike do Siera Leyone"
#. name for SGP
msgid "Singapore"
msgstr "Singapour"
#. official_name for SGP
msgid "Republic of Singapore"
msgstr "Republike di Singapour"
#
#. name for SVK
msgid "Slovakia"
msgstr "Eslovakeye"
#. official_name for SVK
msgid "Slovak Republic"
msgstr "Republike Eslovake"
#. name for SVN
msgid "Slovenia"
msgstr "Esloveneye"
#. official_name for SVN
msgid "Republic of Slovenia"
msgstr "Republike d' Esloveneye"
#. name for SLB
msgid "Solomon Islands"
msgstr "Iyes Solomon"
#
#. name for SOM
msgid "Somalia"
msgstr "Somaleye"
#. official_name for SOM
msgid "Somali Republic"
msgstr "Republike Somalyinne"
#. name for ZAF
msgid "South Africa"
msgstr "Nonne Afrike"
#. official_name for ZAF
msgid "Republic of South Africa"
msgstr "Republike di Nonne Afrike"
#. name for SGS
msgid "South Georgia and the South Sandwich Islands"
msgstr "Iyes Sandwich do sud"
#. name for ESP
msgid "Spain"
msgstr "Espagne"
#. official_name for ESP
msgid "Kingdom of Spain"
msgstr "Rweyåme d' Espagne"
#. name for LKA
msgid "Sri Lanka"
msgstr "Sri Lanka"
#. official_name for LKA
msgid "Democratic Socialist Republic of Sri Lanka"
msgstr "Republike Socialisse Democratike do Sri Lanka"
#
#. name for SDN
msgid "Sudan"
msgstr "Soudan"
#. official_name for SDN
msgid "Republic of the Sudan"
msgstr "Republike do Soudan"
#. name for SUR
msgid "Suriname"
msgstr "Suriname"
#. official_name for SUR
msgid "Republic of Suriname"
msgstr "Republike do Suriname"
#. name for SJM
msgid "Svalbard and Jan Mayen"
msgstr "Iyes Svalbard eyet Jan Mayen"
#
#. name for SWZ
msgid "Swaziland"
msgstr "Suwazilande"
#
#. official_name for SWZ
msgid "Kingdom of Swaziland"
msgstr "Rweyåme di Swazilande"
#. name for SWE
msgid "Sweden"
msgstr "Suwede"
#. official_name for SWE
msgid "Kingdom of Sweden"
msgstr "Rweyåme di Suwede"
#. name for CHE
msgid "Switzerland"
msgstr "Swisse"
#. official_name for CHE
msgid "Swiss Confederation"
msgstr "Confederåcion Swisse"
#. name for SYR
msgid "Syrian Arab Republic"
msgstr "Sireye"
#. name for TWN, official_name for TWN
msgid "Taiwan, Province of China"
msgstr "Taiwan, Province di Chine"
#. common_name for TWN
msgid "Taiwan"
msgstr "Taiwan"
#. name for TJK
msgid "Tajikistan"
msgstr "Tadjikistan"
#. official_name for TJK
msgid "Republic of Tajikistan"
msgstr "Republike do Tadjikistan"
#. name for TZA
msgid "Tanzania, United Republic of"
msgstr "Tanzaneye"
#. official_name for TZA
msgid "United Republic of Tanzania"
msgstr "Republike Uneye di Tanzaneye"
#. name for THA
msgid "Thailand"
msgstr "Taylande"
#. official_name for THA
msgid "Kingdom of Thailand"
msgstr "Rweyåme di Taylande"
#. name for TLS
msgid "Timor-Leste"
msgstr "Timor Ess"
#. official_name for TLS
msgid "Democratic Republic of Timor-Leste"
msgstr "Republike Democratike do Timor Ess"
#. name for TGO
msgid "Togo"
msgstr "Togo"
#. official_name for TGO
msgid "Togolese Republic"
msgstr "Republike Togolesse"
#. name for TKL
msgid "Tokelau"
msgstr "Tokelau"
#. name for TON
msgid "Tonga"
msgstr "Tonga"
#. official_name for TON
msgid "Kingdom of Tonga"
msgstr "Rweyåme di Tonga"
#. name for TTO
msgid "Trinidad and Tobago"
msgstr "Trinité et Tobago"
#. official_name for TTO
msgid "Republic of Trinidad and Tobago"
msgstr "Republike di Trinité et Tobago"
#. name for TUN
msgid "Tunisia"
msgstr "Tunizeye"
#. official_name for TUN
msgid "Republic of Tunisia"
msgstr "Republike di Tunizeye"
#. name for TUR
msgid "Turkey"
msgstr "Turkeye"
#. official_name for TUR
msgid "Republic of Turkey"
msgstr "Republike di Turkeye"
#. name for TKM
msgid "Turkmenistan"
msgstr "Turcmenistan"
#. name for TCA
msgid "Turks and Caicos Islands"
msgstr "Iyes Turks et Caicos"
#. name for TUV
msgid "Tuvalu"
msgstr "Touvalou"
#
#. name for UGA
msgid "Uganda"
msgstr "Ouganda"
#. official_name for UGA
msgid "Republic of Uganda"
msgstr "Republike d' Ouganda"
#. name for UKR
msgid "Ukraine"
msgstr "Oucrinne"
#. name for ARE
msgid "United Arab Emirates"
msgstr "Emirats Arabes Unis"
#. name for GBR
msgid "United Kingdom"
msgstr "Rweyåme Uni"
#. official_name for GBR
msgid "United Kingdom of Great Britain and Northern Ireland"
msgstr "Rweyåme Uni di Grande Burtaegne et d' Irlande do Nôr"
#. name for USA
msgid "United States"
msgstr "Estats Unis"
#. official_name for USA
msgid "United States of America"
msgstr "Estats Unis d' Amerike"
#. name for UMI
msgid "United States Minor Outlying Islands"
msgstr "Iyes mineures des Estats Unis"
#. name for URY
msgid "Uruguay"
msgstr "Ourougway"
#. official_name for URY
msgid "Eastern Republic of Uruguay"
msgstr "Republike Levantrece di l' Ourougway"
#. name for UZB
msgid "Uzbekistan"
msgstr "Ouzbekistan"
#. official_name for UZB
msgid "Republic of Uzbekistan"
msgstr "Republke d' Ouzbekistan"
#. name for VUT
msgid "Vanuatu"
msgstr "Vanouatou"
#. official_name for VUT
msgid "Republic of Vanuatu"
msgstr "Republike di Vanouatou"
#. name for VEN
msgid "Venezuela"
msgstr "Venezwela"
#. official_name for VEN
msgid "Bolivarian Republic of Venezuela"
msgstr "Republike Bolivaryinne do Venezwela"
#
#. name for VNM
msgid "Viet Nam"
msgstr "Vietnam"
#. official_name for VNM
msgid "Socialist Republic of Viet Nam"
msgstr "Republike Socialisse do Vietnam"
#. name for VGB
msgid "Virgin Islands, British"
msgstr "Iyes Viedjes britanikes"
#. official_name for VGB
msgid "British Virgin Islands"
msgstr "Iyes Viedjes Britanikes"
#. name for VIR
msgid "Virgin Islands, U.S."
msgstr "Iyes Viedjes etazunyinnes"
#. official_name for VIR
msgid "Virgin Islands of the United States"
msgstr "Iyes Viedjes des Estats Unis"
#. name for WLF
msgid "Wallis and Futuna"
msgstr "Wallis et Futuna"
#. name for ESH
msgid "Western Sahara"
msgstr "Sara Coûtchantrece"
#. name for YEM
msgid "Yemen"
msgstr "Yemen"
#. official_name for YEM
msgid "Republic of Yemen"
msgstr "Republike do Yemen"
#. name for ZMB
msgid "Zambia"
msgstr "Zambeye"
#. official_name for ZMB
msgid "Republic of Zambia"
msgstr "Republike di Zambeye"
#. name for ZWE
msgid "Zimbabwe"
msgstr "Zimbabwè"
#. official_name for ZWE
msgid "Republic of Zimbabwe"
msgstr "Republike do Zimbabwè"
#. historic names for ATB (withdrawn 1979)
msgid "British Antarctic Territory"
msgstr "Teritweres britanikes d' Antartike"
#. historic names for BUR (withdrawn 1989-12-05)
msgid "Burma, Socialist Republic of the Union of"
msgstr "Birmaneye, Republike Socialisse di l' Union del"
#. historic names for BYS (withdrawn 1992-06-15)
msgid "Byelorussian SSR Soviet Socialist Republic"
msgstr "Bielorûsseye, Republike Socialisse Sovietike di"
#. historic names for CTE (withdrawn 1984)
msgid "Canton and Enderbury Islands"
msgstr "Iyes Canton ey Enderbury"
#. historic names for CSK (withdrawn 1993-06-15)
msgid "Czechoslovakia, Czechoslovak Socialist Republic"
msgstr "Tchecoslovakeye, Republike Socialisse Tchecoslovake"
#. historic names for DHY (withdrawn 1977)
msgid "Dahomey"
msgstr "Dahomey"
#. historic names for ATN (withdrawn 1983)
msgid "Dronning Maud Land"
msgstr "Tere di Dronning Maud"
#. historic names for TMP (withdrawn 2002-05-20)
msgid "East Timor"
msgstr "Timor Ess"
#. historic names for FXX (withdrawn 1997-07-14)
msgid "France, Metropolitan"
msgstr "France, Metropolitinne"
#. historic names for AFI (withdrawn 1977)
msgid "French Afars and Issas"
msgstr "Afars et Issas Francès"
#. historic names for ATF (withdrawn 1979)
msgid "French Southern and Antarctic Territories"
msgstr "Teritweres francès do sud et d' Antartike"
#. historic names for DDR (withdrawn 1990-10-30)
msgid "German Democratic Republic"
msgstr "Almagne Democratike, Republike Democratike Almande"
#. historic names for DEU (withdrawn 1990-10-30)
msgid "Germany, Federal Republic of"
msgstr "Almagne, Republike Federåle d'"
#. historic names for GEL (withdrawn 1979)
msgid "Gilbert and Ellice Islands"
msgstr "Iyes Djilbert ey Ellice"
#. historic names for JTN (withdrawn 1986)
msgid "Johnston Island"
msgstr "Iye Johnston"
#. historic names for MID (withdrawn 1986)
msgid "Midway Islands"
msgstr "Iyes Midway"
#. historic names for NTZ (withdrawn 1993-07-12)
msgid "Neutral Zone"
msgstr "Zône Neute"
#. historic names for NHB (withdrawn 1980)
msgid "New Hebrides"
msgstr "Nouvès Hebrides"
#. historic names for PCI (withdrawn 1986)
msgid "Pacific Islands (trust territory)"
msgstr "Iyes do Pacifike (teritwere di confiance)"
#. historic names for PAN (withdrawn 1993-07-22)
msgid "Panama, Republic of"
msgstr "Panama, Republike do"
#. historic names for PCZ (withdrawn 1980)
msgid "Panama Canal Zone"
msgstr "Zône do Canå d' Panama"
#. historic names for ROM (withdrawn 2002-02-01)
msgid "Romania, Socialist Republic of"
msgstr "Roumaneye, Republike Socialisse di"
#. historic names for KNA (withdrawn 1988)
msgid "St. Kitts-Nevis-Anguilla"
msgstr "St Kitts-Nevis-Anguila"
#. historic names for SCG (withdrawn 2006-06-05)
msgid "Serbia and Montenegro"
msgstr "Serbeye et Montenegro"
#. historic names for SKM (withdrawn 1975)
msgid "Sikkim"
msgstr "Sikkim"
#. historic names for RHO (withdrawn 1980)
msgid "Southern Rhodesia"
msgstr "Rodezeye Nonnrece"
#. historic names for ESH (withdrawn 1988)
msgid "Spanish Sahara"
msgstr "Sara Espagnol"
#. historic names for PUS (withdrawn 1986)
msgid "US Miscellaneous Pacific Islands"
msgstr "Ôtès Iyes do Pacifike des Estats-Unis"
#. historic names for SUN (withdrawn 1992-08-30)
msgid "USSR, Union of Soviet Socialist Republics"
msgstr "URSS, Union des Republikes Socialisses Sovietikes"
#. historic names for HVO (withdrawn 1984)
msgid "Upper Volta, Republic of"
msgstr "Hôte Volta, Republike di"
#. historic names for VAT (withdrawn 1996-04-03)
msgid "Vatican City State (Holy See)"
msgstr "Vatican, Veye-Estat do"
#. historic names for VDR (withdrawn 1977)
msgid "Viet-Nam, Democratic Republic of"
msgstr "Vietnam, Republike Democratike do"
#. historic names for WAK (withdrawn 1986)
msgid "Wake Island"
msgstr "Iye Wake"
#. historic names for YMD (withdrawn 1990-08-14)
msgid "Yemen, Democratic, People's Democratic Republic of"
msgstr "Yemen Democratike, Republike Democratike Populaire do"
#. historic names for YEM (withdrawn 1990-08-14)
msgid "Yemen, Yemen Arab Republic"
msgstr "Yemen, Republike Arabe do"
#. historic names for YUG (withdrawn 1993-07-28)
msgid "Yugoslavia, Socialist Federal Republic of"
msgstr "Yougoslaveye, Republike Socialisse Federåle di"
#. historic names for ZAR (withdrawn 1997-07-14)
msgid "Zaire, Republic of"
msgstr "Zayire, Republike do"
|