File: gl.po

package info (click to toggle)
iso-codes 0.44-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 17,620 kB
  • ctags: 47
  • sloc: xml: 13,041; ansic: 240; sh: 234; perl: 216; python: 171; makefile: 133
file content (2093 lines) | stat: -rw-r--r-- 28,401 bytes parent folder | download
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
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
# Galician translations of ISO 3166 place names
# Copyright (C) 2002,2003 Free Software Foundation, Inc.
# Alastair McKinstry, <mckinstry@computer.org>, 2002.
# Translations from KDE desktop.po:
#  Jesús Bravo Álvarez <jba@pobox.com>
# Alastair McKinstry - further translations from ICU-3.0
#
# $Id: gl.po,v 1.11 2004/09/28 07:08:59 bubulle Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: iso_3166 CVS\n"
"Report-Msgid-Bugs-To: Alastair McKinstry <mckinstry@debian.org>\n"
"POT-Creation-Date: 2004-09-27 06:31+0200\n"
"PO-Revision-Date: 2002-01-05 14:20+0000\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

# AF
#. name for AFG
msgid "Afghanistan"
msgstr ""

#. official_name for AFG
msgid "The Transitional Islamic State of Afghanistan"
msgstr ""

# FO
#. name for ALA
#, fuzzy
msgid "Åland Islands"
msgstr "Irlanda"

# AL
#. name for ALB
msgid "Albania"
msgstr ""

#. official_name for ALB
msgid "Republic of Albania"
msgstr ""

# DZ
#. name for DZA
#, fuzzy
msgid "Algeria"
msgstr "Bulgaria"

#. official_name for DZA
msgid "People's Democratic Republic of Algeria"
msgstr ""

# AS
#. name for ASM
#, fuzzy
msgid "American Samoa"
msgstr "América do Norte"

# AD
#. name for AND
msgid "Andorra"
msgstr ""

#. official_name for AND
msgid "Principality of Andorra"
msgstr ""

# AO
#. name for AGO
msgid "Angola"
msgstr ""

# KR
#. official_name for AGO
#, fuzzy
msgid "Republic of Angola"
msgstr "República Dominicana"

# AI
#. name for AIA
msgid "Anguilla"
msgstr ""

# AQ
#. name for ATA
msgid "Antarctica"
msgstr ""

# AG
#. name for ATG
msgid "Antigua and Barbuda"
msgstr "Antiga e Barbuda"

# AR
#. name for ARG
msgid "Argentina"
msgstr "Arxentina"

# DO
#. official_name for ARG
#, fuzzy
msgid "Argentine Republic"
msgstr "República Dominicana"

# AM
#. name for ARM
#, fuzzy
msgid "Armenia"
msgstr "Arxentina"

#. official_name for ARM
msgid "Republic of Armenia"
msgstr ""

# AW
#. name for ABW
msgid "Aruba"
msgstr ""

# AU
#. name for AUS
msgid "Australia"
msgstr "Australia"

# AT
#. name for AUT
msgid "Austria"
msgstr "Austria"

#. official_name for AUT
msgid "Republic of Austria"
msgstr ""

# AZ
#. name for AZE
#, fuzzy
msgid "Azerbaijan"
msgstr "Turco"

# AZ
#. official_name for AZE
#, fuzzy
msgid "Republic of Azerbaijan"
msgstr "Turco"

# BS
#. name for BHS
#, fuzzy
msgid "Bahamas"
msgstr "Panamá"

#. official_name for BHS
msgid "Commonwealth of the Bahamas"
msgstr ""

# BH
#. name for BHR
#, fuzzy
msgid "Bahrain"
msgstr "Brasil"

# BH
#. official_name for BHR
#, fuzzy
msgid "State of Bahrain"
msgstr "Brasil"

# BD
#. name for BGD
#, fuzzy
msgid "Bangladesh"
msgstr "Inglés"

#. official_name for BGD
msgid "People's Republic of Bangladesh"
msgstr ""

# BB
#. name for BRB
msgid "Barbados"
msgstr "Barbados"

# BY
#. name for BLR
#, fuzzy
msgid "Belarus"
msgstr "Beos"

#. official_name for BLR
msgid "Republic of Belarus"
msgstr ""

# BE
#. name for BEL
msgid "Belgium"
msgstr "Bélxica"

#. official_name for BEL
msgid "Kingdom of Belgium"
msgstr ""

# BZ
#. name for BLZ
#, fuzzy
msgid "Belize"
msgstr "Bélxica"

# BJ
#. name for BEN
msgid "Benin"
msgstr ""

# KR
#. official_name for BEN
#, fuzzy
msgid "Republic of Benin"
msgstr "República Dominicana"

# BM
#. name for BMU
msgid "Bermuda"
msgstr ""

# BT
#. name for BTN
msgid "Bhutan"
msgstr ""

#. official_name for BTN
msgid "Kingdom of Bhutan"
msgstr ""

# BO
#. name for BOL
msgid "Bolivia"
msgstr "Bolivia"

#. official_name for BOL
msgid "Republic of Bolivia"
msgstr ""

# BA
#. name for BIH
msgid "Bosnia and Herzegovina"
msgstr ""

#. official_name for BIH
msgid "Republic of Bosnia and Herzegovina"
msgstr ""

# BW
#. name for BWA
msgid "Botswana"
msgstr ""

#. official_name for BWA
msgid "Republic of Botswana"
msgstr ""

# BV
#. name for BVT
msgid "Bouvet Island"
msgstr ""

# BR
#. name for BRA
msgid "Brazil"
msgstr "Brasil"

#. official_name for BRA
msgid "Federative Republic of Brazil"
msgstr ""

# IO
#. name for IOT
msgid "British Indian Ocean Territory"
msgstr ""

# BN
#. name for BRN
msgid "Brunei Darussalam"
msgstr ""

# BG
#. name for BGR
msgid "Bulgaria"
msgstr "Bulgaria"

#. official_name for BGR
msgid "Republic of Bulgaria"
msgstr ""

# BF
#. name for BFA
msgid "Burkina Faso"
msgstr ""

# BI
#. name for BDI
msgid "Burundi"
msgstr ""

#. official_name for BDI
msgid "Republic of Burundi"
msgstr ""

# KH
#. name for KHM
#, fuzzy
msgid "Cambodia"
msgstr "Colombia"

#. official_name for KHM
msgid "Kingdom of Cambodia"
msgstr ""

# CM
#. name for CMR
msgid "Cameroon"
msgstr ""

#. official_name for CMR
msgid "Republic of Cameroon"
msgstr ""

# CA
#. name for CAN
msgid "Canada"
msgstr "Canadá"

# CV
#. name for CPV
msgid "Cape Verde"
msgstr ""

#. official_name for CPV
msgid "Republic of Cape Verde"
msgstr ""

# KY
#. name for CYM
msgid "Cayman Islands"
msgstr ""

# CF
#. name for CAF
#, fuzzy
msgid "Central African Republic"
msgstr "República Dominicana"

# TD
#. name for TCD
#, fuzzy
msgid "Chad"
msgstr "China"

# KR
#. official_name for TCD
#, fuzzy
msgid "Republic of Chad"
msgstr "República Dominicana"

# CL
#. name for CHL
msgid "Chile"
msgstr "Chile"

# KR
#. official_name for CHL
#, fuzzy
msgid "Republic of Chile"
msgstr "República Dominicana"

# CN
#. name for CHN
msgid "China"
msgstr "China"

# KR
#. official_name for CHN
#, fuzzy
msgid "People's Republic of China"
msgstr "República Dominicana"

# CX
#. name for CXR
msgid "Christmas Island"
msgstr ""

# CC
#. name for CCK
msgid "Cocos (Keeling) Islands"
msgstr ""

# CO
#. name for COL
#, fuzzy
msgid "Colombia"
msgstr "Colombia"

#. official_name for COL
msgid "Republic of Colombia"
msgstr ""

# KM
#. name for COM
msgid "Comoros"
msgstr ""

#. official_name for COM
msgid "Union of the Comoros"
msgstr ""

# CG
#. name for COG
msgid "Congo"
msgstr ""

#. official_name for COG
msgid "Republic of the Congo"
msgstr ""

#. name for ZAR
msgid "Congo, The Democratic Republic of the"
msgstr ""

# CK
#. name for COK
msgid "Cook Islands"
msgstr ""

# CR
#. name for CRI
msgid "Costa Rica"
msgstr ""

#. official_name for CRI
msgid "Republic of Costa Rica"
msgstr ""

# CI
#. name for CIV
msgid "Côte d'Ivoire"
msgstr ""

# KR
#. official_name for CIV
#, fuzzy
msgid "Republic of Cote d'Ivoire"
msgstr "República Dominicana"

# HR
#. name for HRV
msgid "Croatia"
msgstr "Croacia"

#. official_name for HRV
msgid "Republic of Croatia"
msgstr ""

# CU
#. name for CUB
#, fuzzy
msgid "Cuba"
msgstr "Colombia"

# KR
#. official_name for CUB
#, fuzzy
msgid "Republic of Cuba"
msgstr "República Dominicana"

# CY
#. name for CYP
msgid "Cyprus"
msgstr ""

# KR
#. official_name for CYP
#, fuzzy
msgid "Republic of Cyprus"
msgstr "República Dominicana"

# CZ
#. name for CZE
#, fuzzy
msgid "Czech Republic"
msgstr "República Dominicana"

# DK
#. name for DNK
msgid "Denmark"
msgstr "Dinamarca"

#. official_name for DNK
msgid "Kingdom of Denmark"
msgstr ""

# DJ
#. name for DJI
msgid "Djibouti"
msgstr ""

#. official_name for DJI
msgid "Republic of Djibouti"
msgstr ""

# DM
#. name for DMA
#, fuzzy
msgid "Dominica"
msgstr "Romanía"

#. official_name for DMA
msgid "Commonwealth of Dominica"
msgstr ""

# DO
#. name for DOM
msgid "Dominican Republic"
msgstr "República Dominicana"

#. name for TLS
msgid "Timor-Leste"
msgstr ""

#. official_name for TLS
msgid "Democratic Republic of Timor-Leste"
msgstr ""

# EC
#. name for ECU
#, fuzzy
msgid "Ecuador"
msgstr "Ecuador"

#. official_name for ECU
msgid "Republic of Ecuador"
msgstr ""

# EG
#. name for EGY
#, fuzzy
msgid "Egypt"
msgstr "Enerxía"

# KR
#. official_name for EGY
#, fuzzy
msgid "Arab Republic of Egypt"
msgstr "República Dominicana"

# SV
#. name for SLV
msgid "El Salvador"
msgstr "O Salvador"

# SV
#. official_name for SLV
#, fuzzy
msgid "Republic of El Salvador"
msgstr "O Salvador"

# GQ
#. name for GNQ
msgid "Equatorial Guinea"
msgstr ""

#. official_name for GNQ
msgid "Republic of Equatorial Guinea"
msgstr ""

# ER
#. name for ERI
msgid "Eritrea"
msgstr ""

# EE
#. name for EST
msgid "Estonia"
msgstr "Estonia"

#. official_name for EST
msgid "Republic of Estonia"
msgstr ""

# ET
#. name for ETH
#, fuzzy
msgid "Ethiopia"
msgstr "Estonia"

#. official_name for ETH
msgid "Federal Democratic Republic of Ethiopia"
msgstr ""

# FK
#. name for FLK
msgid "Falkland Islands (Malvinas)"
msgstr ""

# FO
#. name for FRO
#, fuzzy
msgid "Faroe Islands"
msgstr "Irlanda"

# FJ
#. name for FJI
msgid "Fiji"
msgstr ""

#. official_name for FJI
msgid "Republic of the Fiji Islands"
msgstr ""

# FI
#. name for FIN
msgid "Finland"
msgstr "Finlandia"

#. official_name for FIN
msgid "Republic of Finland"
msgstr ""

# FR
#. name for FRA
msgid "France"
msgstr "Francia"

# CZ
#. official_name for FRA
#, fuzzy
msgid "French Republic"
msgstr "República Dominicana"

# GF
#. name for GUF
msgid "French Guiana"
msgstr ""

# PF
#. name for PYF
msgid "French Polynesia"
msgstr ""

# TF
#. name for ATF
msgid "French Southern Territories"
msgstr ""

# GA
#. name for GAB
msgid "Gabon"
msgstr ""

# CZ
#. official_name for GAB
#, fuzzy
msgid "Gabonese Republic"
msgstr "República Dominicana"

# GM
#. name for GMB
#, fuzzy
msgid "Gambia"
msgstr "Xamaica"

#. official_name for GMB
msgid "Republic of the Gambia"
msgstr ""

# GE
#. name for GEO
#, fuzzy
msgid "Georgia"
msgstr "Serbia"

# DE
#. name for DEU
msgid "Germany"
msgstr "Alemaña"

# KR
#. official_name for DEU
#, fuzzy
msgid "Federal Republic of Germany"
msgstr "República Dominicana"

# GH
#. name for GHA
#, fuzzy
msgid "Ghana"
msgstr "China"

# KR
#. official_name for GHA
#, fuzzy
msgid "Republic of Ghana"
msgstr "República Dominicana"

# GI
#. name for GIB
msgid "Gibraltar"
msgstr ""

# GR
#. name for GRC
msgid "Greece"
msgstr "Grecia"

# CZ
#. official_name for GRC
#, fuzzy
msgid "Hellenic Republic"
msgstr "República Dominicana"

# GL
#. name for GRL
#, fuzzy
msgid "Greenland"
msgstr "Granada"

# GD
#. name for GRD
msgid "Grenada"
msgstr "Granada"

# GP
#. name for GLP
msgid "Guadeloupe"
msgstr ""

# GU
#. name for GUM
#, fuzzy
msgid "Guam"
msgstr "Guatemala"

# GT
#. name for GTM
msgid "Guatemala"
msgstr "Guatemala"

# GT
#. official_name for GTM
#, fuzzy
msgid "Republic of Guatemala"
msgstr "Guatemala"

# GN
#. name for GIN
msgid "Guinea"
msgstr ""

# KR
#. official_name for GIN
#, fuzzy
msgid "Republic of Guinea"
msgstr "República Dominicana"

# GW
#. name for GNB
msgid "Guinea-Bissau"
msgstr ""

#. official_name for GNB
msgid "Republic of Guinea-Bissau"
msgstr ""

# GY
#. name for GUY
msgid "Guyana"
msgstr ""

# KR
#. official_name for GUY
#, fuzzy
msgid "Republic of Guyana"
msgstr "República Dominicana"

# HT
#. name for HTI
msgid "Haiti"
msgstr ""

# KR
#. official_name for HTI
#, fuzzy
msgid "Republic of Haiti"
msgstr "República Dominicana"

#. name for HMD
msgid "Heard Island and McDonald Islands"
msgstr ""

#. name for VAT
msgid "Holy See (Vatican City State)"
msgstr ""

# HN
#. name for HND
msgid "Honduras"
msgstr "Honduras"

#. official_name for HND
msgid "Republic of Honduras"
msgstr ""

# HK
#. name for HKG
msgid "Hong Kong"
msgstr ""

#. official_name for HKG
msgid "Hong Kong Special Administrative Region of China"
msgstr ""

# HU
#. name for HUN
msgid "Hungary"
msgstr "Hungría"

#. official_name for HUN
msgid "Republic of Hungary"
msgstr ""

# IS
#. name for ISL
msgid "Iceland"
msgstr "Islandia"

#. official_name for ISL
msgid "Republic of Iceland"
msgstr ""

# IN
#. name for IND
#, fuzzy
msgid "India"
msgstr "Iconas"

# KR
#. official_name for IND
#, fuzzy
msgid "Republic of India"
msgstr "República Dominicana"

# ID
#. name for IDN
#, fuzzy
msgid "Indonesia"
msgstr "Iconas"

# ID
#. official_name for IDN
#, fuzzy
msgid "Republic of Indonesia"
msgstr "Iconas"

# KR
#. name for IRN
#, fuzzy
msgid "Iran, Islamic Republic of"
msgstr "República Dominicana"

# KR
#. official_name for IRN
#, fuzzy
msgid "Islamic Republic of Iran"
msgstr "República Dominicana"

# IQ
#. name for IRQ
#, fuzzy
msgid "Iraq"
msgstr "Israel"

# KR
#. official_name for IRQ
#, fuzzy
msgid "Republic of Iraq"
msgstr "República Dominicana"

# IE
#. name for IRL
msgid "Ireland"
msgstr "Irlanda"

# IL
#. name for ISR
msgid "Israel"
msgstr "Israel"

#. official_name for ISR
msgid "State of Israel"
msgstr ""

# IT
#. name for ITA
msgid "Italy"
msgstr "Italia"

# CF
#. official_name for ITA
#, fuzzy
msgid "Italian Republic"
msgstr "República Dominicana"

# JM
#. name for JAM
#, fuzzy
msgid "Jamaica"
msgstr "Xamaica"

# JP
#. name for JPN
msgid "Japan"
msgstr "Xapón"

# JO
#. name for JOR
#, fuzzy
msgid "Jordan"
msgstr "Coreano"

#. official_name for JOR
msgid "Hashemite Kingdom of Jordan"
msgstr ""

# KZ
#. name for KAZ
#, fuzzy
msgid "Kazakhstan"
msgstr "Taiwán"

# KZ
#. official_name for KAZ
#, fuzzy
msgid "Republic of Kazakhstan"
msgstr "Taiwán"

# KE
#. name for KEN
msgid "Kenya"
msgstr ""

# KR
#. official_name for KEN
#, fuzzy
msgid "Republic of Kenya"
msgstr "República Dominicana"

# KI
#. name for KIR
msgid "Kiribati"
msgstr ""

#. official_name for KIR
msgid "Republic of Kiribati"
msgstr ""

# KP
#. name for PRK
msgid "Korea, Democratic People's Republic of"
msgstr ""

#. official_name for PRK
msgid "Democratic People's Republic of Korea"
msgstr ""

# KR
#. name for KOR
#, fuzzy
msgid "Korea, Republic of"
msgstr "República Dominicana"

# KW
#. name for KWT
msgid "Kuwait"
msgstr ""

#. official_name for KWT
msgid "State of Kuwait"
msgstr ""

# KG
#. name for KGZ
msgid "Kyrgyzstan"
msgstr ""

# CZ
#. official_name for KGZ
#, fuzzy
msgid "Kyrgyz Republic"
msgstr "República Dominicana"

#. name for LAO
msgid "Lao People's Democratic Republic"
msgstr ""

# LV
#. name for LVA
#, fuzzy
msgid "Latvia"
msgstr "Croacia"

# KR
#. official_name for LVA
#, fuzzy
msgid "Republic of Latvia"
msgstr "República Dominicana"

# LB
#. name for LBN
msgid "Lebanon"
msgstr ""

# CZ
#. official_name for LBN
#, fuzzy
msgid "Lebanese Republic"
msgstr "República Dominicana"

# LS
#. name for LSO
msgid "Lesotho"
msgstr ""

#. official_name for LSO
msgid "Kingdom of Lesotho"
msgstr ""

# LR
#. name for LBR
#, fuzzy
msgid "Liberia"
msgstr "Serbia"

#. official_name for LBR
msgid "Republic of Liberia"
msgstr ""

#. name for LBY
msgid "Libyan Arab Jamahiriya"
msgstr ""

#. official_name for LBY
msgid "Socialist People's Libyan Arab Jamahiriya"
msgstr ""

# LI
#. name for LIE
msgid "Liechtenstein"
msgstr ""

#. official_name for LIE
msgid "Principality of Liechtenstein"
msgstr ""

# LT
#. name for LTU
#, fuzzy
msgid "Lithuania"
msgstr "Lituano"

# LT
#. official_name for LTU
#, fuzzy
msgid "Republic of Lithuania"
msgstr "Lituano"

# LU
#. name for LUX
#, fuzzy
msgid "Luxembourg"
msgstr "Luxemburgo"

#. official_name for LUX
msgid "Grand Duchy of Luxembourg"
msgstr ""

# MO
#. name for MAC
#, fuzzy
msgid "Macao"
msgstr "Kanu"

#. official_name for MAC
msgid "Macao Special Administrative Region of China"
msgstr ""

# KR
#. name for MKD
#, fuzzy
msgid "Macedonia, Republic of"
msgstr "República Dominicana"

#. official_name for MKD
msgid "The Former Yugoslav Republic of Macedonia"
msgstr ""

# MG
#. name for MDG
msgid "Madagascar"
msgstr ""

#. official_name for MDG
msgid "Republic of Madagascar"
msgstr ""

# MW
#. name for MWI
#, fuzzy
msgid "Malawi"
msgstr "Kanu"

# KR
#. official_name for MWI
#, fuzzy
msgid "Republic of Malawi"
msgstr "República Dominicana"

# MY
#. name for MYS
#, fuzzy
msgid "Malaysia"
msgstr "Kanu"

# MV
#. name for MDV
#, fuzzy
msgid "Maldives"
msgstr "Kanu"

#. official_name for MDV
msgid "Republic of Maldives"
msgstr ""

# ML
#. name for MLI
#, fuzzy
msgid "Mali"
msgstr "Kanu"

# KR
#. official_name for MLI
#, fuzzy
msgid "Republic of Mali"
msgstr "República Dominicana"

# MT
#. name for MLT
#, fuzzy
msgid "Malta"
msgstr "Kanu"

# KR
#. official_name for MLT
#, fuzzy
msgid "Republic of Malta"
msgstr "República Dominicana"

# MH
#. name for MHL
msgid "Marshall Islands"
msgstr ""

#. official_name for MHL
msgid "Republic of the Marshall Islands"
msgstr ""

# MQ
#. name for MTQ
msgid "Martinique"
msgstr ""

# MR
#. name for MRT
#, fuzzy
msgid "Mauritania"
msgstr "Lituano"

#. official_name for MRT
msgid "Islamic Republic of Mauritania"
msgstr ""

# MU
#. name for MUS
#, fuzzy
msgid "Mauritius"
msgstr "Lituano"

# MU
#. official_name for MUS
#, fuzzy
msgid "Republic of Mauritius"
msgstr "Lituano"

# YT
#. name for MYT
msgid "Mayotte"
msgstr ""

# MX
#. name for MEX
msgid "Mexico"
msgstr "México"

# US
#. official_name for MEX
#, fuzzy
msgid "United Mexican States"
msgstr "Estados Unidos de América"

#. name for FSM
msgid "Micronesia, Federated States of"
msgstr ""

#. official_name for FSM
msgid "Federated States of Micronesia"
msgstr ""

# KR
#. name for MDA
#, fuzzy
msgid "Moldova, Republic of"
msgstr "República Dominicana"

#. official_name for MDA
msgid "Republic of Moldova"
msgstr ""

# MC
#. name for MCO
msgid "Monaco"
msgstr ""

#. official_name for MCO
msgid "Principality of Monaco"
msgstr ""

# MN
#. name for MNG
msgid "Mongolia"
msgstr ""

# MS
#. name for MSR
msgid "Montserrat"
msgstr ""

# MA
#. name for MAR
msgid "Morocco"
msgstr ""

#. official_name for MAR
msgid "Kingdom of Morocco"
msgstr ""

# MZ
#. name for MOZ
msgid "Mozambique"
msgstr ""

#. official_name for MOZ
msgid "Republic of Mozambique"
msgstr ""

# MM
#. name for MMR
#, fuzzy
msgid "Myanmar"
msgstr "Panamá"

# MM
#. official_name for MMR
#, fuzzy
msgid "Union of Myanmar"
msgstr "Panamá"

# NA
#. name for NAM
msgid "Namibia"
msgstr ""

#. official_name for NAM
msgid "Republic of Namibia"
msgstr ""

# NR
#. name for NRU
msgid "Nauru"
msgstr ""

# KR
#. official_name for NRU
#, fuzzy
msgid "Republic of Nauru"
msgstr "República Dominicana"

# NP
#. name for NPL
msgid "Nepal"
msgstr ""

#. official_name for NPL
msgid "Kingdom of Nepal"
msgstr ""

# NL
#. name for NLD
msgid "Netherlands"
msgstr "Países Baixos"

#. official_name for NLD
msgid "Kingdom of the Netherlands"
msgstr ""

# AN
#. name for ANT
#, fuzzy
msgid "Netherlands Antilles"
msgstr "Países Baixos"

# NC
#. name for NCL
#, fuzzy
msgid "New Caledonia"
msgstr "Macedonia"

# NZ
#. name for NZL
msgid "New Zealand"
msgstr "Nova Celandia"

# NI
#. name for NIC
#, fuzzy
msgid "Nicaragua"
msgstr "Paraguai"

# NI
#. official_name for NIC
#, fuzzy
msgid "Republic of Nicaragua"
msgstr "Paraguai"

# NE
#. name for NER
msgid "Niger"
msgstr ""

#. official_name for NER
msgid "Republic of the Niger"
msgstr ""

# NG
#. name for NGA
#, fuzzy
msgid "Nigeria"
msgstr "Serbia"

# KR
#. official_name for NGA
#, fuzzy
msgid "Federal Republic of Nigeria"
msgstr "República Dominicana"

# NU
#. name for NIU
msgid "Niue"
msgstr ""

# KR
#. official_name for NIU
#, fuzzy
msgid "Republic of Niue"
msgstr "República Dominicana"

# NF
#. name for NFK
msgid "Norfolk Island"
msgstr ""

# MP
#. name for MNP
msgid "Northern Mariana Islands"
msgstr ""

#. official_name for MNP
msgid "Commonwealth of the Northern Mariana Islands"
msgstr ""

# NO
#. name for NOR
msgid "Norway"
msgstr "Noruega"

#. official_name for NOR
msgid "Kingdom of Norway"
msgstr ""

# OM
#. name for OMN
msgid "Oman"
msgstr ""

#. official_name for OMN
msgid "Sultanate of Oman"
msgstr ""

# PK
#. name for PAK
msgid "Pakistan"
msgstr ""

#. official_name for PAK
msgid "Islamic Republic of Pakistan"
msgstr ""

# PW
#. name for PLW
#, fuzzy
msgid "Palau"
msgstr "Paraguai"

# KR
#. official_name for PLW
#, fuzzy
msgid "Republic of Palau"
msgstr "República Dominicana"

#. name for PSE
msgid "Palestinian Territory, Occupied"
msgstr ""

#. official_name for PSE
msgid "Occupied Palestinian Territory"
msgstr ""

# PA
#. name for PAN
msgid "Panama"
msgstr "Panamá"

# KR
#. official_name for PAN
#, fuzzy
msgid "Republic of Panama"
msgstr "República Dominicana"

# PG
#. name for PNG
msgid "Papua New Guinea"
msgstr ""

# PY
#. name for PRY
msgid "Paraguay"
msgstr "Paraguai"

#. official_name for PRY
msgid "Republic of Paraguay"
msgstr ""

# PE
#. name for PER
msgid "Peru"
msgstr "Perú"

# KR
#. official_name for PER
#, fuzzy
msgid "Republic of Peru"
msgstr "República Dominicana"

# PH
#. name for PHL
msgid "Philippines"
msgstr ""

#. official_name for PHL
msgid "Republic of the Philippines"
msgstr ""

# PN
#. name for PCN
msgid "Pitcairn"
msgstr ""

# PL
#. name for POL
msgid "Poland"
msgstr "Polonia"

# KR
#. official_name for POL
#, fuzzy
msgid "Republic of Poland"
msgstr "República Dominicana"

# PT
#. name for PRT
msgid "Portugal"
msgstr "Portugal"

# KR
#. official_name for PRT
#, fuzzy
msgid "Portuguese Republic"
msgstr "República Dominicana"

# PR
#. name for PRI
msgid "Puerto Rico"
msgstr ""

# QA
#. name for QAT
#, fuzzy
msgid "Qatar"
msgstr "Kanu"

#. official_name for QAT
msgid "State of Qatar"
msgstr ""

# RE
#. name for REU
msgid "Reunion"
msgstr ""

# RO
#. name for ROU
msgid "Romania"
msgstr "Romanía"

#. name for RUS
msgid "Russian Federation"
msgstr ""

# RW
#. name for RWA
#, fuzzy
msgid "Rwanda"
msgstr "Canadá"

# CZ
#. official_name for RWA
#, fuzzy
msgid "Rwandese Republic"
msgstr "República Dominicana"

# SH
#. name for SHN
msgid "Saint Helena"
msgstr ""

# KN
#. name for KNA
#, fuzzy
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts e Nevis"

# LC
#. name for LCA
#, fuzzy
msgid "Saint Lucia"
msgstr "Santa Lucía"

#. name for SPM
msgid "Saint Pierre and Miquelon"
msgstr ""

# VC
#. name for VCT
#, fuzzy
msgid "Saint Vincent and the Grenadines"
msgstr "San Vicente e as Granadinas"

# WS
#. name for WSM
msgid "Samoa"
msgstr ""

#. official_name for WSM
msgid "Independent State of Samoa"
msgstr ""

# SM
#. name for SMR
msgid "San Marino"
msgstr ""

#. official_name for SMR
msgid "Republic of San Marino"
msgstr ""

# ST
#. name for STP
msgid "Sao Tome and Principe"
msgstr ""

#. official_name for STP
msgid "Democratic Republic of Sao Tome and Principe"
msgstr ""

# SA
#. name for SAU
msgid "Saudi Arabia"
msgstr ""

#. official_name for SAU
msgid "Kingdom of Saudi Arabia"
msgstr ""

# SN
#. name for SEN
msgid "Senegal"
msgstr ""

#. official_name for SEN
msgid "Republic of Senegal"
msgstr ""

# SC
#. name for SYC
msgid "Seychelles"
msgstr ""

#. official_name for SYC
msgid "Republic of Seychelles"
msgstr ""

# SL
#. name for SLE
msgid "Sierra Leone"
msgstr ""

#. official_name for SLE
msgid "Republic of Sierra Leone"
msgstr ""

# SG
#. name for SGP
msgid "Singapore"
msgstr ""

#. official_name for SGP
msgid "Republic of Singapore"
msgstr ""

# SK
#. name for SVK
#, fuzzy
msgid "Slovakia"
msgstr "Eslovaco"

# KR
#. official_name for SVK
#, fuzzy
msgid "Slovak Republic"
msgstr "República Dominicana"

# SI
#. name for SVN
msgid "Slovenia"
msgstr "Eslovenia"

#. official_name for SVN
msgid "Republic of Slovenia"
msgstr ""

# SB
#. name for SLB
msgid "Solomon Islands"
msgstr ""

# SO
#. name for SOM
#, fuzzy
msgid "Somalia"
msgstr "Romanía"

# DO
#. official_name for SOM
#, fuzzy
msgid "Somali Republic"
msgstr "República Dominicana"

# ZA
#. name for ZAF
msgid "South Africa"
msgstr "África do Sur"

# ZA
#. official_name for ZAF
#, fuzzy
msgid "Republic of South Africa"
msgstr "África do Sur"

# GS
#. name for SGS
msgid "South Georgia and the South Sandwich Islands"
msgstr ""

# ES
#. name for ESP
msgid "Spain"
msgstr "España"

#. official_name for ESP
msgid "Kingdom of Spain"
msgstr ""

# LK
#. name for LKA
msgid "Sri Lanka"
msgstr ""

#. official_name for LKA
msgid "Democratic Socialist Republic of Sri Lanka"
msgstr ""

# SD
#. name for SDN
#, fuzzy
msgid "Sudan"
msgstr "Son"

#. official_name for SDN
msgid "Republic of the Sudan"
msgstr ""

# SR
#. name for SUR
msgid "Suriname"
msgstr ""

#. official_name for SUR
msgid "Republic of Suriname"
msgstr ""

# SJ
#. name for SJM
msgid "Svalbard and Jan Mayen"
msgstr ""

# SZ
#. name for SWZ
#, fuzzy
msgid "Swaziland"
msgstr "Tailandia"

# SZ
#. official_name for SWZ
#, fuzzy
msgid "Kingdom of Swaziland"
msgstr "Tailandia"

# SE
#. name for SWE
msgid "Sweden"
msgstr "Suecia"

#. official_name for SWE
msgid "Kingdom of Sweden"
msgstr ""

# CH
#. name for CHE
msgid "Switzerland"
msgstr "Suíza"

#. official_name for CHE
msgid "Swiss Confederation"
msgstr ""

# CF
#. name for SYR
#, fuzzy
msgid "Syrian Arab Republic"
msgstr "República Dominicana"

#. name for TWN
msgid "Taiwan, Province of China"
msgstr ""

# TW
#. common_name for TWN
msgid "Taiwan"
msgstr "Taiwán"

# TJ
#. name for TJK
#, fuzzy
msgid "Tajikistan"
msgstr "Taiwán"

# TJ
#. official_name for TJK
#, fuzzy
msgid "Republic of Tajikistan"
msgstr "Taiwán"

# KR
#. name for TZA
#, fuzzy
msgid "Tanzania, United Republic of"
msgstr "República Dominicana"

#. official_name for TZA
msgid "United Republic of Tanzania"
msgstr ""

# TH
#. name for THA
msgid "Thailand"
msgstr "Tailandia"

#. official_name for THA
msgid "Kingdom of Thailand"
msgstr ""

# TG
#. name for TGO
msgid "Togo"
msgstr ""

# CZ
#. official_name for TGO
#, fuzzy
msgid "Togolese Republic"
msgstr "República Dominicana"

# TK
#. name for TKL
msgid "Tokelau"
msgstr ""

# TO
#. name for TON
msgid "Tonga"
msgstr ""

#. official_name for TON
msgid "Kingdom of Tonga"
msgstr ""

# TT
#. name for TTO
msgid "Trinidad and Tobago"
msgstr "Trindade e Tobago"

# TT
#. official_name for TTO
#, fuzzy
msgid "Republic of Trinidad and Tobago"
msgstr "Trindade e Tobago"

# TN
#. name for TUN
#, fuzzy
msgid "Tunisia"
msgstr "Rusia"

#. official_name for TUN
msgid "Republic of Tunisia"
msgstr ""

# TR
#. name for TUR
msgid "Turkey"
msgstr "Turquía"

# KR
#. official_name for TUR
#, fuzzy
msgid "Republic of Turkey"
msgstr "República Dominicana"

# TM
#. name for TKM
msgid "Turkmenistan"
msgstr ""

#. name for TCA
msgid "Turks and Caicos Islands"
msgstr ""

# TV
#. name for TUV
msgid "Tuvalu"
msgstr ""

# UG
#. name for UGA
#, fuzzy
msgid "Uganda"
msgstr "Canadá"

# KR
#. official_name for UGA
#, fuzzy
msgid "Republic of Uganda"
msgstr "República Dominicana"

# UA
#. name for UKR
msgid "Ukraine"
msgstr "Ucraína"

# AE
#. name for ARE
msgid "United Arab Emirates"
msgstr ""

#. name for GBR
msgid "United Kingdom"
msgstr ""

#. official_name for GBR
msgid "United Kingdom of Great Britain and Northern Ireland"
msgstr ""

# US
#. name for USA
#, fuzzy
msgid "United States"
msgstr "Estados Unidos de América"

# US
#. official_name for USA
#, fuzzy
msgid "United States of America"
msgstr "Estados Unidos de América"

# UM
#. name for UMI
#, fuzzy
msgid "United States Minor Outlying Islands"
msgstr "Estados Unidos de América"

# UY
#. name for URY
msgid "Uruguay"
msgstr "Uruguai"

#. official_name for URY
msgid "Eastern Republic of Uruguay"
msgstr ""

# UZ
#. name for UZB
msgid "Uzbekistan"
msgstr ""

#. official_name for UZB
msgid "Republic of Uzbekistan"
msgstr ""

# VU
#. name for VUT
msgid "Vanuatu"
msgstr ""

#. official_name for VUT
msgid "Republic of Vanuatu"
msgstr ""

# VE
#. name for VEN
msgid "Venezuela"
msgstr "Venezuela"

# KR
#. official_name for VEN
#, fuzzy
msgid "Bolivarian Republic of Venezuela"
msgstr "República Dominicana"

# VN
#. name for VNM
#, fuzzy
msgid "Viet Nam"
msgstr "Trepadeiras"

#. official_name for VNM
msgid "Socialist Republic of Viet Nam"
msgstr ""

# VG
#. name for VGB
msgid "Virgin Islands, British"
msgstr ""

# VI
#. official_name for VGB
#, fuzzy
msgid "British Virgin Islands"
msgstr "Finlandia"

# VI
#. name for VIR
#, fuzzy
msgid "Virgin Islands, U.S."
msgstr "Finlandia"

# VI
#. official_name for VIR
#, fuzzy
msgid "Virgin Islands of the United States"
msgstr "Finlandia"

# WF
#. name for WLF
msgid "Wallis and Futuna"
msgstr ""

# EH
#. name for ESH
msgid "Western Sahara"
msgstr ""

# YE
#. name for YEM
msgid "Yemen"
msgstr ""

# KR
#. official_name for YEM
#, fuzzy
msgid "Republic of Yemen"
msgstr "República Dominicana"

# ZM
#. name for ZMB
#, fuzzy
msgid "Zambia"
msgstr "Xamaica"

# KR
#. official_name for ZMB
#, fuzzy
msgid "Republic of Zambia"
msgstr "República Dominicana"

# ZW
#. name for ZWE
msgid "Zimbabwe"
msgstr ""

#. official_name for ZWE
msgid "Republic of Zimbabwe"
msgstr ""

#. name for SCG
msgid "Serbia and Montenegro"
msgstr ""

# FM
#, fuzzy
#~ msgid "Micronesia"
#~ msgstr "Macedonia"

# IR
#, fuzzy
#~ msgid "Iran"
#~ msgstr "Israel"

# MK
#~ msgid "Macedonia"
#~ msgstr "Macedonia"

# AT
#, fuzzy
#~ msgid "Russia"
#~ msgstr "Austria"

# GB
#, fuzzy
#~ msgid "Britain (UK)"
#~ msgstr "Brasil"

# SY
#, fuzzy
#~ msgid "Syria"
#~ msgstr "Serbia"