~ubuntu-branches/ubuntu/jaunty/iso-codes/jaunty

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
iso-codes trunk
---------------
UNRELEASED


iso-codes 1.6
-------------
Tobias Toedter <t.toedter@gmx.net>
Tue, 20 November 2007

  [ General ]
  * Remove no.po files from all subdirectories, as they have been
    superseeded by nb.po files.

  [ ISO-3166 translations ]
  * Traditional Chinese (Closes: #445641)
  * Gujarati (Closes: #445745)
  * Marathi
  * Indonesian
  * Kurdish (Closes: alioth#305556)
  * Korean (Closes: #446254 and updates from TP)
  * Romanian (Closes: alioth#305737)
  * Galician (Closes: #446480)
  * Vietnamese (via TP and the amazing Clytie)
  * Slovenian (via TP)
  * Belarusian (via TP)
  * Wolof (Closes: #450797)
  * Lithuanian
  * Afrikaans

  [ ISO-15924 translations ]
  * Vietnamese added (via TP and the amazing Clytie)
  * Slovenian (via TP)
  * Dutch (via TP)
  * Simplified Chinese (via TP)

  [ ISO-639 translations ]
  * Slovenian (via TP)
  * Esperanto (via TP)
  * Polish (via TP)
  * Irish (via TP)
  * Vietnamese (via TP and the amazing Clytie)
  * Dutch (via TP)
  * Belarusian (via TP)
  * Encoding problems fixed in Tamil translation. Thanks to Fridel Wolff
    for spotting it.
  * Simplified Chinese (via TP)
  * Afrikaans updated (thanks to Friedel Wolff)

  [ ISO-4217 translations ]
  * Slovenian (via TP)
  * Polish (via TP)
  * Vietnamese (via TP and the amazing Clytie)
  * Simplified Chinese (via TP)

  [ ISO-3166-2 translations ]
  * Greek
  * Vietnamese (via TP and the amazing Clytie)
  * Lithuanian
  * Simplified Chinese (via TP)

  [ ISO-3166-2 ]
  * Add new attribute (parent) for iso_3166_2_entry, marking the inclusion in
    a higher-level subdivision
  * Correct the list with information from the ISO-3166 MA
    newsletter I-1: add accents for Dominican Republic
  * Correct the list with information from the ISO-3166 MA
    newsletter I-2: use schwa in Azerbaijan, typo in Malawi and Nicaragua,
    remove no longer existing municipality from Cape Verde, use full names
    for Guinea, add missing department (Haute-Marne) for France
  * Correct the list with information from the ISO-3166 MA
    newsletter I-3: add accents for United Arab Emirates
  * Correct the list with information from the ISO-3166 MA
    newsletter I-4: add accents for Ecuador, Spain, India, Kyrgyzstan,
    Kazakhstan, Lao, Mauritius, Romania, Turkmenistan and Yemen, remove
    alternative spellings for Spain and India, add missing province in
    Burundi, remove no longer existing province from Uzbekistan, put Ethiopia
    subdivisions in amharic
  * Correct the list with information from the ISO-3166 MA
    newsletter I-5: add accents for Switzerland, remove Serbia and Montenegro
  * Correct the list with information from the ISO-3166 MA
    newsletter I-6: add accents for Colombia, add counties for Albania
  * Correct the list with information from the ISO-3166 MA
    newsletter I-7: remove no longer existing province from Indonesia
  * Correct the list with information from the ISO-3166 MA
    newsletter I-8: remove channel islands, Isle of Man, Jersey and Guernsey
    from Great Britain and add Jersey as a separate entity, put Rwanda
    provinces names in french, add a missing province (Choiseul) for Solomon
    Islands, fix typos in Chad, Saint Vincent and the Grenadines and Russia,
    add accents for Côte d'Ivoire and Italy, remove no longer existing
    provinces from Iran and Chad
  * Add peripheries for Greece
  * Add missing department for Haiti (Artibonite) and for Gambia (Western)
  * Correct prefecture names for Greece, thanks to Alexis Darrasse and
    Wikipedia
  * Correct codes for Antigua and Barbuda, Ireland, Saint Kitts and Nevis
    and the Netherlands
  * Correct Austrian länder names with "Österreich"
  * Correct Cyprus district names with transliterated greek names
  * Remove duplicate entry for Timor Leste
  * Fix typos in LK-44, LU-G, SY-TA, WS-FA, AD-05.
  * Use modern names for PK-{BA,SD} and GM-M
  * Use full names for Togo and Greece
  * Add accents for BF, BO, BR, CF, CG, CL, CR, CU, CY, DE, DZ, EG, GQ, GW
    HN, HU, IS, JO, KM, KW, LT, LV, MN, MX, NE, NO, PA, PE, PT, PY, SA, SE,
    SV, UA, UY, VU
  * Use codes of the form 'XX YYYY' for second level of regional divisions for
    AZ, BD, CV, ES, FR, GB, GN, GR, ID, IE, IT, KN, MA, MW, PH, RS and UG
  * distinguish RU-AL and RU-ALT.
  * distinguish BW-NW, CM-NW, ZA-NW.
  * distinguish BW-SO, MW S, SL-S, ZM-07.

  [ ISO-639 ]
  * Change "ast" ar per ISO-639 MA changes of 2007-10-29


iso-codes 1.5
-------------
Tobias Toedter <t.toedter@gmx.net>
Thu,  4 October 2007

  [ General ]
    - Add information about contact addresses to README, so that
      translations and bug reports will be easier to get

  [ ISO-15924 ]
    - Add new standard ISO 15924 (script names) to the iso-codes package

  [ ISO-15924 translations ]
    - French (fr) added by Tobias Toedter
    - Arabic (ar) added by Tobias Toedter from ICU
    - Belarusian (be) added by Tobias Toedter from ICU
    - Bulgarian (bg) added by Tobias Toedter from ICU
    - Catalan (ca) added by Tobias Toedter from ICU
    - Czech (cs) added by Tobias Toedter from ICU
    - Welsh (cy) added by Tobias Toedter from ICU
    - Danish (da) added by Tobias Toedter from ICU
    - German (de) added by Tobias Toedter from ICU
    - Greek (el) added by Tobias Toedter from ICU
    - Spanish (es) added by Tobias Toedter from ICU
    - Estonian (et) added by Tobias Toedter from ICU
    - Persian (fa) added by Tobias Toedter from ICU
    - Finnish (fi) added by Tobias Toedter from ICU
    - Hebrew (he) added by Tobias Toedter from ICU
    - Hindi (hi) added by Tobias Toedter from ICU
    - Croatian (hr) added by Tobias Toedter from ICU
    - Hungarian (hu) added by Tobias Toedter from ICU
    - Italian (it) added by Tobias Toedter from ICU
    - Japanese (ja) added by Tobias Toedter from ICU
    - Korean (ko) added by Tobias Toedter from ICU
    - Lithuanian (lt) added by Tobias Toedter from ICU
    - Malayalam (ml) added by Tobias Toedter from ICU
    - Maltese (mt) added by Tobias Toedter from ICU
    - Norwegian Bokmål (nb) added by Tobias Toedter from ICU
    - Dutch (nl) added by Tobias Toedter from ICU
    - Norwegian Nynorsk (nn) added by Tobias Toedter from ICU
    - Norwegian (no) added by Tobias Toedter from ICU
    - Polish (pl) added by Tobias Toedter from ICU
    - Pushto (ps) added by Tobias Toedter from ICU
    - Brazilian Portuguese (pt_BR) added by Tobias Toedter from ICU
    - Portuguese (pt) added by Tobias Toedter from ICU
    - Romanian (ro) added by Tobias Toedter from ICU
    - Russian (ru) added by Tobias Toedter from ICU
    - Slovak (sk) added by Tobias Toedter from ICU
    - Slovenian (sl) added by Tobias Toedter from ICU
    - Somali (so) added by Tobias Toedter from ICU
    - Albanian (sq) added by Tobias Toedter from ICU
    - Serbian (sr) added by Tobias Toedter from ICU
    - Swedish (sv) added by Tobias Toedter from ICU
    - Telugu (te) added by Tobias Toedter from ICU
    - Thai (th) added by Tobias Toedter from ICU
    - Turkish (tr) added by Tobias Toedter from ICU
    - Ukrainian (uk) added by Tobias Toedter from ICU
    - Simplified Chinese (zh_CN) added by Tobias Toedter from ICU
    - Chinese (Hong Kong) (zh_HK) added by Tobias Toedter from ICU
    - Traditional Chinese (zh_TW) added by Tobias Toedter from ICU

  [ ISO-3166-2 ]
    - Correct typos in UY-AR and CU-HO. Thanks to Pablo
      Saratxaga
    - Correct typo in VN-65. Thanks to Clytie Siddall
    - Complete the list with modifications from the ISO-3166 MA
      newsletter I-8 of 2007-04-17 (partial)
    - Correct the list with modifications from the ISO-3166 MA
      newsletter I-7: correct names for Russia and accented names
      for Slovenia
    - Correct the list with modifications from the ISO-3166 MA newsletter
      I-6: split Australia in territories and provinces, remove Australian
      Antarctic Territory, Split China subdivisions, Split Colombia
      subdivisions, add economic regions for Morocco
    - Correct the list with modifications from the ISO-3166 MA newsletter
      I-5: use correct accented names for Lybia subdivisions, add
      geographical regions for Uganda, use accented names for states
      of Venezuela
    - Correct the list with modifications from the ISO-3166 MA newsletter
      I-4 (except some accentuation as the newsletter is not UTF-8 encoded):
      split Spain entities (and name the autonomous communities properly),
      split Ethiopia, Add Georgia's entities, split India, split
      Kirghizistan, split Cambodia, split North Korea, split Lao,
      split Moldova and corrected accentuation, split Tadjikistan,
      add Timor-Leste, split Uzbekistan
    - Checked the list with modifications from the ISO-3166 MA newsletter
      I-3
    - Checked the list with modifications from the ISO-3166 MA newsletter
      I-2: accented names for Abu Dhabi, accented names fur Bulgaria,
      add divisions for Bangladesh, accented names for Benin, Congo, Capverde,
      complete list for France, first-level divisions of UK, accented names
      for Guinea, Guatemala, Croatia, add geographical units for Indonesia,
      accented named for India, Iran, Nicaragua, Turkey
    - Checked the list with modifications from the ISO-3166 MA newsletter
      I-1: no change
    - Spelling error for JP-07 name (Closes: #440601)
    - Other subdivisions of Belgium. (Closes: #440578)
    - Spelling error for NL-DR name (Closes: #440840)

  [ ISO-3166 ]
    - Add the alpha-2 codes for countries part of ISO-3166_3 (former
      countries codes): TP, FX, YU, SC

  [ ISO-4217 ]
    - Updated from Wikipedia data (not removing what we had and
      Wikipedia hadn't): http://en.wikipedia.org/wiki/ISO_4217
    - Add withdrawal date to historic ISO 4217 entries, as this is
      required for the XML file to be valid

  [ ISO-3166-2 ]
    - Fix spelling errors in Estonian county names, thanks to
      Erkki Eilonen. Closes: #444260
    - Fix capitalisation in attribute name, thanks to Erkki Eilonen.
      Closes: #445040

  [ ISO-639 ]
    - update to 2007-08-08

  [ ISO-3166 translations ]
  * Thai translation (Closes: #440297)
  * Portuguese (pt) updated by Miguel Figueiredo. Closes: #441329
  * Dutch (nl) updated by Freek de Kruijf via TP
  * Swedish (sv) updated by Daniel Nylander via TP
  * Hungarian (hu) updated by Gabor Kelemen via TP
  * Polish (pl) updated by Andrzej M. Krzysztofowicz via TP
  * Russian (ru) updated by Yuri Kozlov
  * Simplified Chinese (zh_CN) updated by LI Daobing via TP
  * Walloon (wa) updated by Pablo Saratxaga via TP
  * Esperanto (eo) updated by Edmund GRIMLEY EVANS via TP
  * Thai (th) updated by Theppitak Karoonboonyanan

  [ ISO-639 translations ]
  * French translation
  * Dutch (nl) updated by Freek de Kruijf via TP
  * Hungarian (hu) updated by Gabor Kelemen via TP
  * Russian (ru) updated by Yuri Kozlov (thanks to Alexander Sigachov)
  * Polish (pl) updated by Andrzej M. Krzysztofowicz via TP

  [ ISO-4217 translations ]
  * Hungarian (hu) updated by Gabor Kelemen via TP
  * Chinese (Hong-Kong) (zh_HK) added by Abel Cheung via TP
  * Russian (ru) updated by Alexander Sigachov
  * Polish (pl) updated by Andrzej M. Krzysztofowicz via TP
  * Wallon (wa) updated by Pablo Saratxaga via TP
  * Simplified Chinese (zh_CN) updated by LI Daobing via TP
  
  [ ISO-3166-2 translations ]
  * Dutch (nl) updated by Freek de Kruijf via TP
  * Simplified Chinese (zh_CN) updated by LI Daobing via TP
  * Vietnamese (vi) updated by Clytie Siddall via TP
  * Wallon (wa) updated by Pablo Saratxaga via TP


iso-codes 1.4
-------------
Tobias Toedter <t.toedter@gmx.net>
Tue, 28 August 2007

  [ ISO-3166-2 ]
    - Names of Vietnam regions checked and accented properly.
      Thanks to Clytie Siddall

  [ ISO-3166 ]
    - &amp; remplaced by "and" in ISO-3166 XML file. Closes: #408590
    - Replace official name for Bahrain (bh) with "Kingdom of Bahrain",
      as discussed in the Debian BTS. Closes: #261184
    - Replace official name for Afghanistan (af) with "Islamic Republic
      of Afghanistan", according to UN lists and Wikipedia.
    - Update to ISO 3166-3 NEWSLETTER No. I-5
    - Makefile.am: add 'names' to fields list

  [ ISO-3166-2 translations ]
    - Simplified Chinese (zh_CN) updated by LI Daobing
    - Slovak (sk) updated by Ivan Masár via TP
    - Vietnamese (vi) updated by Clytie Siddall via TP
    - Dutch (nl) updated by Freek de Kruijf via TP
    - French (fr) updated by Christian Perrier

  [ ISO-3166 translations ]
    - Vietnamese (vi) updated by Clytie Siddall via TP
    - German (de) updated by Tobias Toedter
    - Slovak (sk) updated by Ivan Masár via TP
    - French (fr) updated by Christian Perrier
    - Spanish (es) updated by Javier Fernandez-Sanguino
    - Gujarati (gu) updated by Kartik Mistry. Closes: #438827
    - Tamil (ta) updated by Dr.T.Vasudevan. Closes: #438852
    - French (fr) updated by Christian Perrier.
    - Vietnamese (vi) updated by Clytie Siddall.
    - Japanese (ja) updated by Kenshi Muto.
    - Basque (eu) updated by Piarres Beobide Egaña. Closes: #439893

  [ ISO-4217 translations ]
    - Vietnamese (vi) updated by Clytie Siddall via TP
    - Slovak (sk) updated by Ivan Masár via TP
    - Spanish (es) updated by Javier Fernandez-Sanguino

  [ ISO-639 translations ]
    - Vietnamese (vi) updated by Clytie Siddall via TP
    - German (de) updated by Bruno Haible via TP
    - Slovak (sk) updated by Ivan Masár via TP
    - Spanish (es) updated by Javier Fernandez-Sanguino


iso-codes 1.3
-------------
Tobias Toedter <t.toedter@gmx.net>
Mon, 23 July 2007

  [ ISO-3166-2 ]
  * Correct misspelled entries for Poland, thanks to Jakub Bogusz.
  * Correct spelling of "Wake Island", reported as bug #120111 in
    Ubuntu Launchpad.
  * Correct misspelled Tunisian cities, reported as bug #119572 in
    Ubuntu Launchpad.

  [ ISO-3166 translations ]
    - Tamil (ta) updated by Tirumurti Vasudevan. Closes: #432169

  [ ISO-4217 translations ]
    - Turkish (tr) updated by Nilgün Belma Bugüner via TP.

  [ Tobias Toedter ]
  * Resurrect iso639tab.py and iso_639.tab, as it turns out that
    those files are still needed. This is only a temporary measure;
    the files are still deprecated and should not be used by new
    programs. This helps fixing a FTBFS bug in geneweb.
    Closes: #432543


iso-codes 1.2
-------------
Tobias Toedter <t.toedter@gmx.net>
Fri, 29 June 2007

  [ ISO-639 translations ]
  * Dutch (nl) updated by Freek de Kruijf via TP
  * Irish (ga) updated by Kevin Patrick Scannell via TP

  [ ISO-3166-2 translations ]
  * Dutch (nl) updated by Freek de Kruijf via TP

  [ ISO-4217 translations ]
  * Italian (it) updated by Luca Ferretti via TP

  [ Tobias Toedter ]
  * Don't include iso-codes.pc in the tarball, it is generated
    automatically during configuration
  * Remove iso639tab.py and iso_639.tab from distribution, as
    both files are deprecated and no longer used


iso-codes 1.1.1
---------------
Tobias Toedter <t.toedter@gmx.net>
Wed, 27 June 2007

  [ ISO-639 translations ]
  * Finnish (fi) updated by Tommi Vainikainen via TP
  * Esperanto (eo) updated by Edmund GRIMLEY EVANS via TP

  [ ISO-4217 translations ]
  * Estonian (et) updated by Ain Vagula via TP
  * Italian (it) updated by Luca Ferretti via TP
  * Replace initial header values in en.po with real data, because
    msgfmt exits with an error otherwise


iso-codes 1.1
-------------
Tobias Toedter <t.toedter@gmx.net>
Tue, 15 May 2007

  * Changes to the ISO-3166 list
    - Numeric code updated for Serbia. Closes: #421663
    - Alpha-3 code corrected for "Congo, The Democratic
      Republic of the". Closes: #421664

  * Changes to ISO-3166-2 list
    - update to newsletter I-7, Add DJ-AR, ID-SR, VN-{71,72,73}
    - Add CN-64, AF-DAY, AF-PAN. Thanks to LI Daobing for pointing it
    - Correct the entry for the Maharashtra state in India. Thanks to LI Daobing.
    - Correct name of KR-{43,45,47}, KP-{PYO,NAJ}, MN-{051,059,064,064},
      FR-{35,36}, AL-DR, PT-06, BF-TUI, BR-BA, GT-SO, GW-QU, GW-TO, HT-NE, IQ-BA,
      KH-{23,2,3,5,6,8}, ML-{2,4}, MV-{27,28}, MX-{COA,COL,CHH,MOR}, MZ-A,
      NA-KH, NZ-WKO, PE-CUS, PG-SAN, PY-{5,6}, RO-{BT,BV,CL,CT}, RW-M,
      SA-{09,11}, SI-038, SY-HI, TL-{BA,LA,MF}, TZ-08, BG-{10,11}, CO-CAL,
      DJ-{AS,TA}, GB-{CGV,RFW,TOF}, TZ-10
    - Correct code of FR-{2A,2B}
    - move JP section to the proper place
    - add "City" suffix to the proper place of TW section to avoid the
      duplicate name between County and City.
    - add en.po
    - fix most of the duplicate entry.

  * Changes to ISO-639 list
    (http://www.loc.gov/standards/iso639-2/php/code_changes.php):
    - gsw:  Swiss German; Alemannic
    - bin:  Bini; Edo
    - car:  Galibi Carib
    - bad:  Banda languages
    - btk:  Batak languages
    - day:  Land Dayak languages
    - ijo:  Ijo languages
    - kar:  Karen languages
    - kro:  Kru languages
    - nah:  Nahuatl languages
    - son:  Songhai languages
    - srn:  Sranan Tongo
    - znd:  Zande languages
    - kac:  Kachin; Jingpho
    - km,khm:  Central Khmer
    - arn:  Mapudungun; Mapuche
    - rar:  Rarotongan; Cook Island Maori
    - rm,roh:  Romansh
    - ky,kir:  Kirghiz; Kyrgyz
    - syc: (added) Classical Syriac

  [ ISO-4217 translations ]
    - Russian (ru) updated by Yuri Kozlov. Closes: #405398
    - Simplified Chinese (zh_CN) updated by LI Daobing.
    - Portuguese (pt) updated by Miguel Figueiredo. Closes: #413595
    - Finnish (fi) updated by Tommi Vainikainen via TP
    - Serbian (sr) updated by Aleksandar Jelenak via TP
    - French (fr) completed by Christian Perrier
    - Dutch (nl) updated by Freek de Kruijf via TP
    - Polish (pl) updated by Andrzej M. Krzysztofowicz via TP
    - Russian (ru) updated by Yuri Kozlov. Closes: #421506

  [ ISO-639 translations ]
    - French (fr) updated from the ISO-639 official names in French
      but capitalized
    - Simplified Chinese (zh_CN) updated.
    - Dutch (nl) updated by Freek de Kruijf via TP
    - Polish (pl) updated by Andrzej M. Krzysztofowicz via TP
    - Slovak (sk) updated by Ivan Masár via TP
    - Russian (ru) updated by Yuri Kozlov. Closes: #421506

  [ ISO-3166-2 translations ]
    - Serbian (sr) updated by Nikola Smolenski (from the TP)
    - Dutch updated by Freek de Kruijf (from the TP)
    - Simplified Chinese updated by LI Diaobing, Ji YongGang
    - French updated by Christian Perrier

  [ ISO-3166 translations ]
    - Polish (pl) updated by Andrzej M. Krzysztofowicz via TP
    - Marathi (mr) updated by Priti Patil. Closes: #416789
    - Kannada (kn) updated by Vikram Vincent. Closes: #422056

  [ LI Daobing ]
  * iso2pot.py
    - keep duplicate information in pot file.
    - support multiple "--comments" option
  * ISO-639: keep both 639_1_code and 639_2T_code in the comment of the pot
    file.


iso-codes 1.0
-------------
Tobias Toedter <t.toedter@gmx.net>
Mon, 4 Dec 2006

  [ ISO-3166 translations ]
  * Bulgarian (bg.po) updated by Damyan Ivanov. Closes: #396368
  * Bosnian (bs.po) updated by Safir Šećerović. Closes: #396395
  * Portuguese (pt.po) updated by Miguel Figueiredo. Closes: #399233
  * Norwegian Nynorsk (nn.po) updated by Håvard Korsvoll. Closes: #401343
  * Malayalam (ml.po) added by Praveen. Closes: #401438

  [Alastair McKinstry]
  * New major version number. The XML Schema is now considered stable
    (has not changed in over 1 year) and v1.0 is now released.
    Note that this is identical to 0.5*; only the version number has changed.

  [ Tobias Toedter ]
  * Fix typo for GB-SOM in iso_3166_2.xml and update all .po files.
    Thanks to Freek de Kruijf for the bug report.


iso-codes 0.58
--------------
Tobias Toedter <t.toedter@gmx.net>
Sun, 29 Oct 2006

  [ ISO-3166 translations ]
  * Albanian (sa.po) updated by Elian Myftiu. Closes: #394701
  * Greek (el.po) updated by Emmanuel Galatoulas.


iso-codes 0.57
--------------
Tobias Toedter <t.toedter@gmx.net>
Sat, 21 Oct 2006

  [ ISO-3166 translations ]
  * Catalan (ca.po) updated by Orestes Mas
  * Greek (el.po) updated by QUAD-nrg.net
  * Gujarati (gu.po) updated by Kartik Mistry. Closes: #393441
  * Hindi (hi.po) updated. Closes: #393943
  * Kurdish (ku.po) updated (5u left)
  * Nepali (ne.po) updated
  * Polish (pl.po) updated by Marek Laska.
  * Simplified Chinese (zh_CN.po) updated by Ming Hua
  * Slovenian (sl.po) updated by Primož Peterlin via TP
  * Tagalog (tl.po) updated by Eric Pareja


iso-codes 0.56
--------------
Tobias Toedter <t.toedter@gmx.net>
Sat, 14 Oct 2006

  [ Kęstutis Biliūnas ]
  * iso_3166/lt.po updated.
  * iso_639/lt.po updated.
  * iso_4217/lt.po updated.

  [ Tobias Toedter ]
  * iso_3166:
    - km.po updated by Khoem Sokhem. Closes: #359669
    - eo.po updated by Edmund GRIMLEY EVANS
    - pt_BR.po updated by Andre Luis Lopes
    - ro.po updated by Eddy Petrişor
    - eu.po updated by Piarres Beobide
    - ko.po updated by Sunjae Park
    - wo.po updated by Mouhamadou Mamoune Mbacke. Closes: #390689
    - et.po updated by Siim Põder. Closes: #390974
    - gl.po updated by Jacobo Tarrío. Closes: #390990
    - id.po updated by Arief S Fitrianto
    - dz.po updated by Tenzin Dendup. Closes: #391346
    - ar.po updated by Ossama Khayat and Mohammed Adnène Trojette.
      Closes: #391612
    - tr.po updated by Recai Oktas
    - zh_TW updated by Tetralet
    - nb.po updated by Bjørn Steensrud. Closes: #391685
    - sv.po updated by Daniel Nylander. Closes: #392074
    - eo.po updated by Edmund Grimley Evans via TP
    - fi.po updated by Tommi Vainikainen via TP
    - sr.po updated by Aleksandar Jelenak via TP
  * iso_4217
    - sl.po updated by Primož Peterlin via TP
  * iso_639
    - eo.po updated by Edmund Grimley Evans via TP
    - fi.po updated by Tommi Vainikainen via TP
    - ga.po updated by Kevin Patrick Scannell via TP
  * Add a watch file, as we now have a download location for tarballs again

  [ Christian Perrier ]
  * iso_3166:
    - it.po updated by Davide Viti. Closes: #390938
    - bn.po updated by Jamil Ahmed.
    - fi.po updated by Tapio Lehtonen. Closes: #391178
    - zh_HK.po updated by Abel Cheung
  * iso_639
    - ja.po updated by IIDA Yosiaki via TP
    - nn.po updated by Karl Ove Hufthammer

  [ Alastair McKinstry ]
  * iso_3166:
    - ga.po: Updated.
  * iso_4217:
    - ga.po: Updated.

  [ Eugeniy Meshcheryakov ]
  * iso_3166/uk.po: Updated.

  [ Lior Kaplan ]
  * iso_3166/he.po: Updated.

  [ Javier Fernandez-Sanguino ]
  * iso_3166/es.po: Updated.
  * iso_4217/es.po: Updated.


iso-codes 0.55
--------------
Tobias Toedter <t.toedter@gmx.net>
Sun, 1 Oct 2006

  [ Christian Perrier ]
  * iso_639
    - Added "zza" code as of
      http://www.loc.gov/standards/iso639-2/php/code_changes.php
    - update PO and POT files
    - da.po updated by Claus Hindsgaul
    - fi.po updated by Tommi Vainikainen
    - fr.po updated by Christian Perrier (from the official list)
    - ru.po updated by Yuri Kozlov. Closes: #390330
  * iso_639_3
    - hu.po updated by SZERVÁC Attila
  * iso_3166
    - Removed "CS" and added "RS" and "ME" for Serbia and Montenegro split
      http://www.iso.org/iso/en/prods-services/iso3166ma/03updates-on-iso-3166/nlv12-div.html
    - update PO and POT files
    - da.po updated by Claus Hindsgaul
    - fr.po updated by Christian Perrier (from the official list)
    - hu.po updated by SZERVÁC Attila
    - mk.po updated by Georgi Stanojevski
    - nl.po updated by Frans Pop. Closes: #390299
    - ru.po updated by Yuri Kozlov. Closes: #390330
    - sk.po updated by Peter Mann
  * iso_3166_2
    - hu.po updated by SZERVÁC Attila

  [ Kenshi Muto ]
  * iso_3166
    - ja.po updated

  [ Clytie Siddall ]
  * iso_3166
    - vi.po updated
  * iso_639
    - vi.po updated

  [ Miroslav Kure ]
  * iso_3166
    - cs.po updated
  * iso_639
    - cs.po updated

  [ Tobias Toedter ]
  * iso_3166
    - de.po updated by Tobias Toedter
    - pt.po updated by Miguel Figueiredo. Closes: #390474
    - th.po updated by Theppitak Karoonboonyanan. Closes: #390486
  * iso_639
    - de.po updated by Tobias Toedter


iso-codes 0.54
--------------
Tobias Toedter <t.toedter@gmx.net>
Fri, 29 Sep 2006

  [ Tobias Toedter ]
  * iso_4217
    - tr.po updated by Nilgün Belma Bugüner via TP
    - sr.po updated by Aleksandar Jelenak via TP
  * iso_3166
    - zh_HK.po added by Abel Cheung via TP
    - sv.po updated by Daniel Nylander. Closes: #386512
    - it.po updated by Davide Viti. Closes: #387367
    - pt_BR.po updated by André Luís Lopes. Closes: #387797
    - sl.po updated by Primož Peterlin via TP
  * iso_639
    - ja.po updated by IIDA Yosiaki via TP

  [ Alastair McKinstry ]
  * iso_3166
    - lv.po updated by Aigars Mahinovs.

  [ Christian Perrier ]
  * iso_3166
    - bn.po updated by Jamil Ahmed.


iso-codes 0.53
--------------
Tobias Toedter <t.toedter@gmx.net>
Sun, 27 Aug 2006

  [ Alastair McKinstry ]
  * Fixed typo in New Zealand county name: "Hawkes's' Bay"

  [ Tobias Toedter ]
  * iso_3166
    - ar.po updated by Ossama M. Khayat. Closes: #377530
    - ro.po updated by Eddy Petrişor. Closes: #378665
    - vi.po updated by Clytie Siddall. Closes: #380591
    - zh_CN.po updated by Carlos Z.F. Liu. Closes: #381000
    - fi.po updated by Raija Polojärvi. Closes: #382051
    - ko.po updated by Sunjae Park. Closes: #384538
  * debian/copyright: Update for the new SVN source code location
  * iso_3166_2
    - Corrected some errors in the XML file. Thanks to Andreas Schmidt
      and Ulrich Mueller for the patch and hints. Closes: #375688
    - Remove iso_3166_2.tab, it's no longer needed. Thanks to Ulrich
      Mueller for pointing this out.
    - Remove double msgid for "Hawkes Bay" in all po files. Closes: #381355
  * iso_4217
    - vi.po updated by Clytie Siddall via TP
    - nl.po updated by Luk Claes via TP
    - fi.po updated by Tommi Vainikainen via TP
    - hu.po updated by Gabor Kelemen via TP
  * iso_639
    - vi.po updated by Clytie Siddall via TP
    - eo.po updated by Edmund GRIMLEY EVANS via TP
    - fi.po updated by Tommi Vainikainen via TP
    - hu.po updated by Gabor Kelemen via TP
  * Changed the contact address to the newly created mailing list

  [ Christian Perrier ]
  * iso_3166:
    - dz.po updated by Kinley Tshering.
    - fi.po updated by Tapio Lehtonen. Closes: #382051

  [ Eugeniy Meshcheryakov ]
  * iso_3166/uk.po updated


iso-codes 0.52
--------------
Tobias Toedter <t.toedter@gmx.net>
Sun, 09 Jul 2006

  * Acknowledge NMU by Christian Perrier. Thanks!
  * Add Tobias Toedter and Christian Perrier as additional
    maintainers with Alastair's consent

  [ Tobias Toedter ]
  * iso_3166:
    - kk.po updated by Timur Birsh. Closes: #375493
    - km.po updated by Khoem Sokhem
    - ru.po updated by Yuri Kozlov. Closes: #376234
    - th.po updated by Theppitak Karoonboonyanan. Closes: #377217
  * iso_3166_2:
    - th.po updated by Theppitak Karoonboonyanan.
  * iso_639:
    - XML source updated.
    - ru.po updated by Yuri Kozlov. Closes:
    - de.po updated by Tobias Toedter
    - th.po updated by Theppitak Karoonboonyanan.
  * iso_4217:
    - XML source updated. Closes: #376085
    - de.po updated by Tobias Toedter
    - th.po updated by Theppitak Karoonboonyanan.
  * Remove debian/watch file from EXTRA_DIST in Makefile.am
  * Move to Standards-Version: 3.7.2. No changes required.
  * Remove iso_4217_historic.tab and iso_4217.tab as they are outdated
    and no longer distributed
  * Remove iso2tab.py and tab2h.pl as they are no longer used.
  * iso2pot.py: Derive the header of POT files from the file input
  * Use a more portable method of creating directories during the
    installation of data files. Thanks to Julio M. Merino Vidal
    for the patch. Closes: #375687
  * Add debian/compat file for debhelper
  * Update of the debian/copyright information
  * debian/rules:
    - Remove dependency on autoconf and automake
    - Rewrite large parts of the build system to better conform to
      standard rules files
  * debian/control:
    - Change Build-Depends-Indep to Build-Depends, according to
      Policy 7.6. The reason is that we call the "clean" target.
    - Remove autoconf and automake from Build-Depends
    - Add "XC-Package-Type: udeb" to iso-3166-udeb to give debhelper
      a hint about the package
  * Remove the debian/ directory from the EXTRA_DIST variable in
    Makefile.am, as we're not building a native Debian package.
    The generated tarball does now no longer include the Debian
    specific parts.

  [ Miroslav Kure ]
  * iso_639/cs.po updated
  * iso_4217/cs.po updated

  [ Christian Perrier ]
  * iso_4217
    - fr.po updated from the standard itself (lucky me)


iso-codes 0.51-1.1
------------------
Christian Perrier <bubulle@debian.org>
Sat, 10 Jun 2006

  * NMU to allow new translations to go in. Actually I should
    rather add Tobias and myself to the Uploaders field, as
    co-maintainers but it's a maintainer decision

  [ Alastair McKinstry ]
  * Ensure that generated .pot files are left in the tarball for the
    benefit of the Translation Project.
  * iso_3166_2:
    - Minor Danish update (Claus Hindsgaul)

  [ Tobias Toedter ]
  * iso_3166:
    - ne.po added by Shyam Krishna Bal. Closes: #369525
    - it.po corrected by Davide Viti. Closes: #370019

  [ Christian Perrier ]
  * iso_639
    - Modify the entry for "dv/div" as of ISO-639 change of 2006-06-07
    - Add "nqo" for "N'ko" as of ISO-639 change of 2006-05-21
    - Update French translation from ISO-639 official names


iso-codes 0.51
--------------
Alastair McKinstry <mckinstry@debian.org>
Mon, 24 Apr 2006

  [ Christian Perrier ]
  * iso_639:
    - fr.po updated by Christian Perrier for zxx
  * iso_3166:
    - Rename the Punjabi translation file name from pa_IN to pa
      to fit a decision taken in -i18n
    - km.po added by Kakada Hok. Closes: #359669
    - dz.po added by Pema Geyleg. Closes: #361794
  * Updated French translation of ISO-3166
  * Updated Khmer translation of ISO-3166 (Khoem Sokhem). Closes: #359669

  [ Miroslav Kure ]
  * iso_639/cs.po huge update
  * iso_3166/cs.po regular update

  [ Tobias Toedter ]
  * iso_3166:
    - Inclusion of an entry for Jersey, Guernsey, and Isle of Man,
      according to the ISO 3166-1 NEWSLETTER No. V-11, published
      on 2006-03-29. Closes: #360425
    - bg.po updated by Ognyan Kulev
    - nl.po updated by Luk Claes
    - eo.po updated by Edmund GRIMLEY EVANS
    - id.po updated by Arief S Fitrianto
    - eu.po updated by Piarres Beobide Egaña
    - sk.po updated by Peter Mann
    - gl.po updated by Jacobo Tarrío. Closes: #360512
    - th.po updated by Theppitak Karoonboonyanan. Closes: #360565
    - de.po updated by Tobias Toedter
    - he.po updated by Lior Kaplan
    - pt.po updated by Miguel Figueiredo
    - mk.po updated by Georgi Stanojevski
    - ca.po updated by Orestes Mas Casals
    - tl.po updated by Eric Pareja
    - wo.po updated by Mouhamadou Mamoune Mbacke
    - hu.po updated by SZERVÁC Attila. Closes: #364286
    - cy.po updated by Dafydd Harries
  * Removed double definition of VERSION in Makefile.am
  * iso_4217:
    - th.po updated by Theppitak Karoonboonyanan. Closes: #360693
    - pt.po updated by Miguel Figueiredo

  [ Claus Hindsgaul ]
  * Updated iso_3166/da.po

  [ Kenshi Muto ]
  * Updated iso_3166/ja.po

  [ Kęstutis Biliūnas ]
  * Updated iso_3166/lt.po
  * Updated iso_4217/lt.po
  * Updated iso_639/lt.po


iso-codes 0.50
--------------
Alastair McKinstry <mckinstry@debian.org>
Fri, 10 Mar 2006

  [ Alastair McKinstry ]
  * iso_639:
    - Added new code: srn Sranan Tongo
    - Added new code: zxx is 'No linguistic content'
    - Move to DH_COMPAT=5
    - Split iso_639_3 into a separate domain, to be kind to translators.
  * iso_4217:
    - de.po: proof-read patch by Christian Stimming.
    - du.po: updated by Gabor Kelemen.
  * Updated debian/copyright to point to current source of iso-codes,
    namely the CVS repository.
  * iso_3166:
    - de.po: Corrections by Christian Stimming.

  [ Christian Perrier ]
  * iso_639:
    - tt.po updated by  Albert Fazlí
    - da.po updated by  Claus Hindsgaul
    - Added new codes (see http://www.loc.gov/standards/iso639-2/codechanges.html)
      - Karelian
      - Frisian renamed to Western Frisian
      - Eastern Frisian
      - Northern Frisian
      - Angika
      - Swiss German
      - Aromanian
    - update ISO 639-3 to the 20050910 version of SIL
  * iso_3166:
    - tt.po added by  Albert Fazlí
    - bn.po added by Progga
    - et.po updated by Hasso Tepper
    - pa_IN.po added by Amanpreet Singh Alam
    - irrelevant pa.po removed

  [ Tobias Toedter ]
  * Removed double space from package description. Closes: #338190
  * Removed watch file. There's currently no real homepage for the
    tarball.
  * iso_4217:
    - ru.po updated by Yuri Kozlov. Closes: #346189

  [ Konstantinos Margaritis]
  * Updated iso_3166/el.po

  [ Claus Hindsgaul ]
  * Updated iso_3166/da.po and iso_3166_3/da.po

0.49 Alastair McKinstry <mckinstry@debian.org>

  [ Alastair McKinstry ]
  * iso_639:
    - vi.po updated by  Clytie Siddall.
    - sr.po updated by  Danilo Segan.
    - eo.po updated by Edmund GRIMLEY EVANS.
    - sl.po updated by  Primož Peterlin.
    - ja.po updated by  IIDA Yosiaki.
  * iso_3166:
    - sl.po updated by  Primož Peterlin
    - ku.po by Erdal Ronahî. Closes: #335234.
      Remove byte-order-mark bytes from file ku.po: Closes: #335975.
  * iso_3166_2:
    - corrected spelling errors; thanks to Theppitak Karoonboonyanan.
      Closes: #331071.
  * iso_639.tab: Don't sort headers. Closes: #329549.
  * Allow iso-codes to build without pyxml. Patch thanks to
    James Henstridge. Closes: #331357, #328152.
  * Include draft iso_639_3.xml table so that translators see the translations
    needed. This generates a new.larger iso_639.pot. Closes: #325276.
  * Correct README file, mentioning XML rather than tab formats.
    Closes: #334744.
  [ Tobias Toedter ]
  * iso_4217:
    - th.po translated by Theppitak Karoonboonyanan. Closes: #333076
  * iso_3166:
    - th.po updated by Theppitak Karoonboonyanan. Closes: #333080
  * iso_3166_2:
    - th.po updated by Theppitak Karoonboonyanan. Closes: #333093
  * iso_639:
    - th.po updated by Theppitak Karoonboonyanan. Closes: #333094


0.48 Alastair McKinstry <mckinstry@debian.org>

  [ Christian Perrier ]
  * iso_3166:
    - wo.po updated by Mouhamadou Mamoune Mbacke

  [ Alastair McKinstry ]
  * iso_4217:
    - sl.po updated by  Primož Peterlin.
    - et.po updated by  Ain Vagula.
  
  [ Tobias Toedter ]
  * iso_639:
    - Added new entry for "Ainu". Thanks to Christian Perrier.
      Closes: #325273
    - fr updated by Christian Perrier
  
  [ Alastair McKinstry ]
  * Changed COPYING to LGPL-2.1; License is LGPL as described in
    debian/copyright and alioth, etc.

0.47-2 Alastair McKinstry <mckinstry@debian.org>

  [ Tobias Toedter ]
  * Added autoconf and automake1.9 to Build-Depends-Indep, which fixes
    an FTBFS bug. Thanks to Andreas Jochens for the patch. Closes: #321588
  * Added an XML Document Type Definition (DTD) for each XML file.
    Closes: #272064
  * iso_639:
    - eo updated by Edmund Grimley Evans
    - pt_BR updated by Juan Carlos Castro y Castro
    - wa updated by Pablo Saratxaga
    - de updated by Wolfgang Rohdewald
    - fa updated by Roozbeh Pournader
    - vi updated by Clytie Siddall
    - ru updated by Yuri Kozlov (Closes: #321538)
    - nl updated by Luk Claes
    - es updated by Javier Fernández-Sanguino Peña
    - da updated by Claus Hindsgaul

  [ Alastair McKinstry ]
  * iso_639:
    - fi updated by Tommi Vainikainen
    - nl further update by Luk Claes
    - eo further cleanup by  Edmund Grimley Evans.
    - ga updated by Kevin Patrick Scannell.
    - vi further updated by Clytie Siddall. 
  * iso_4217:
    - vi updated by Clytie Siddall.
  * iso_3166:
    - vi updated by Clytie Siddall.
  * iso_3166_2:
    - vi updated by Clytie Siddall.


0.47 Alastair McKinstry <mckinstry@debian.org>

  * Set pkgconfig-dir to DATADIR to be multilib friendly. Thanks to
      Christopher Aillon.
  * autogen.sh: remove --force from automake, as it is not understood
    by automake-1.4
  * Fix build issues due to VERSION not being propagated to Makefiles
    correctly. Reverted to using @PACKAGE_VERSION@ for the moment until the
    configure magic is fixed (for all auto* versions...)
  * iso_3166:
    - de: spellchecked by Jens Seidel. Closes: #314029
    - wo: added by Mouhamadou Mamoune Mbacke
    - fr: case errors corrections. Closes: #319658
  * iso_3166_2:
    - typo in Finnish placename: s/Ahvenanmasn/Ahvenanmaan/.
      Correction thanks to Tommi Vainikainen.
    - Updated Danish translations by Claus Hindsgaul
  * iso_629:
    - Portuguese translation correction thanks to  Guilherme de S. Pastore.
      Closes: #318346.
    - Code change; 
      The official name for language gl is now Galician, not Gallegan.
   - Code change: add "alt" for Southern Altai.
    - French translation update


0.46 Alastair McKinstry <mckinstry@debian.org>

  * iso_639:
    English, French names for 'xal' changed to '
    - en: Kalmyk; Oirat
    - fr: kalmouk; oïrat. Closes: #301371
    - eo.po updated by Edmund GRIMLEY EVANS.
    - fi.po updated by Tommi Vainikainen.
    - rw.po updated by Steve Murphy.
    - vi.po updated by Clytie Siddall.
    - German update by Wolfgang Rohdewald. Closes: #297663
  * iso_3166_2:
    - nl.po updated by Taco Witte.
    - vi.po updated by  Clytie Siddall.
  * iso_3166:
    - vi.po updated by  Clytie Siddall.
  * iso_4217:
    - vi.po updated by  Clytie Siddall.
    - fi.po updated by Tommi Vainikainen
  * debian/control: improved description for iso-3166-udeb. Closes: #300310
  * Removed unnecessary Makefile.in, configure, etc files from CVS.
  * Fix prefix breakage in iso-codes.pc. Closes: #302707.

0.45 Alastair McKinstry <mckinstry@debian.org>

  * iso_3166
   - Galician completed by Jacobo Tarrio.
  * iso_639
    - Galician updated by Jacobo Tarrio.      
    - Name of "Finnish" corrected in French
  * Build iso_639.tab from iso_639.xml to include corrections.

0.44 Alastair McKinstry <mckinstry@debian.org>

  * iso_3166
    - Tagalog by Eric Pareja. 
  * iso_639
    - French corrected by Christian Perrier
    - 'Panjabi' changed to 'Punjabi' on translators advice; 
  * iso_3166_2
    - Corrections to sk by Jan Minar; space  corrections. 
  * Correct autogen/autoconf code. Now builds .pot and Makefiles properly
    Thanks to Christian Persch.

 0.43 Alastair McKinstry <mckinstry@debian.org>
 
  * iso_3166/Makefile: makefile dropped necessary argument for iso3166tab.py,
      which caused zero-byte iso_3166.tab files.
      
0.42 Alastair McKinstry <mckinstry@debian.org>

  * iso_3166
    - Kinyarwanda by  Steve Murphy.
    - Welsh: updated by Dafydd Harries. Closes: #282190
    - Bosnian: updated by Safir Secerovic
    - Swedish updated by Christian Rose.
    - Dutch, updated by Luk Claes.
  * iso_3166_2
    - nl.po: Updated by Elros Cyriatan.
  * iso_639
    - New codes in Standard: Closes: #280732.
      - Patches from Christian Perrier to update. Closes: #277467, #278759.
    - Corrections thanks to Edmund GRIMLEY EVANS. Closes: #277825.
    - Terminology and Biblio codes were swapped. Closes: #284994.
    - nl.po: Updated by Elros Cyriatan, Taco Witte, Luk Claes.
    - eo.po: Updated by Edmund GRIMLEY EVANS.
    - da.po: Updated by Claus Hindsgaul.
    - rw.po: Kinyarwanda by  Steve Murphy.
  * iso_4217
    - rw.po: Kinyarwanda by  Steve Murphy.
  * Package autoconf'd by Christian Persch.

 -- Alastair McKinstry <mckinstry@debian.org>  Sat,  8 Jan 2005 20:26:12 +0000

0.41 Alastair McKinstry <mckinstry@debian.org>

  * iso_3166
    - ca.po: Updated by Jordi Mallach
    - fi.po: Updated by Tapio Lehtonen
    - mk.po: Updated by Georgi Stanojevski
  * iso_639
    - Changed Spanish language name to remove "Castilian".
      Thanks to Carlos Perelló Marín; 
    - Removed obsolete entries in PO files as they are likely to confuse
      gettext utilities because of duplicate entries
 * iso_3166_2
    - da.po: Updated by Claus Hindsgaul

0.40 Alastair McKinstry <mckinstry@debian.org>

 * iso_3166
    - tk.po: New Turkmen translation from Kakilik Group.
    - zh_TW.po : Updated Traditional Chinese translation. 
    - rename ven.po to ve.po.
    - ru.po updated by Nikolai Prokoschenko
    - sq.po updated by Elian Myftiu. 
 * iso_3166_2
    - rename ven.po to ve.po
    - ru.po updated by Nikolai Prokoschenko
i * iso_639
    - rename ven.po to ve.po
    - ru.po updated by Nikolai Prokoschenko
    - iso_639.xml: Fixes.
 * iso_4217
   - ru.po updated by Nikolai Prokoschenko

0.39 Alastair McKinstry <mckinstry@debian.org>

* iso_639
    - nl.po: updated by  Elros Cyriatan .
    - ja.po: updated by IIDA Yosiaki.
    - Add translations from ICU-3.0
  * iso_4217
    - ja.po: updated by IIDA Yosiaki.
    - nl.po: updated by Elros Cyriatan.
    - Add translations from ICU-3.0
    - Unfuzzied entries that changed case in English msgid.
  * iso_3166
    - sr.po: updated by Aleksandar Jelenak
    - sv.po: updated by Christian Rose.
    - Add translations from ICU-3.0
  * iso_3166_2
    - nl.po: updated by Elros Cyriatan.
    - Corrections thanks to Elros Cyriatan.

0.38 Alastair McKinstry <mckinstry@debian.org>

 * iso_3166
   - ro.po: updated by Eddy Petrisor.
   - eo.po: updated by Edmund GRIMLEY EVANS.
   - sv.po: updated by Christian Rose.
 * iso_639
   - wa.po: updated by Pablo Saratxaga.
   - sv.po: updated by Christian Rose.
 * iso_3166_2
   - fr.po: updated by Michel Robitaille.
 * iso_4217
   - tr.po: updated by Nilgün Belma Bugüner.
   - sr.po: new file from Aleksandar Jelenak.

0.37 Alastair McKinstry <mckinstry@debian.org>

 * iso_639:
   - ja.po: updated by IIDA Yosiaki.
 * iso_3166:
   - hr.po: added by Christian Perrier.
   - sq.po: Updated by Elian Myftiu. Closes: #261697.
   - ro.po: updated by Eddy Petrisor.
		   
0.36 Alastair McKinstry <mckinstry@debian.org>

  * iso_3166
    - pt_BR.po: update by Andre Luis Lopes. Closes: #255146
    - zh_CN.po: update by Carlos Z.F. Liu. Closes: #255998.
    - hu.po: update by  VERÓK István.
    - id.po: updated by  Arief S Fitrianto.
    - af.po: updated from icu.
    - uk.po: Updated by Eugeniy Meshcheryakov.
  * iso_4217
    - cs.po: Updated by Miroslav Kure.
    - da.po: Updated by Claus Hindsgaul.
    - uk.po: Updated by Eugeniy Meshcheryakov.
  * iso_639
    - cs.po: Updated by Miroslav Kure.
    - da.po: Updated by Claus Hindsgaul.
    - nl.po: Updated by Elros Cyriatan.
  * iso_3166_2
    - nl.po: Updated Dutch translation by Elros Cyriatan.
  * Remove a VIM swapfile from a Korean translation. Closes: #255075
  * Fix broken XML in iso_3166_2.xml ; add accents to some entries.
    Closes: #255506.

0.35-2 Alastair McKinstry <mckinstry@debian.org>
3
  * iso_4217
    - update PO files
    - fr.po: update by Christian Perrier
    - da.po: update by Claus Hindsgaul
  * Restore iso_639.tab as it is needed for countrychooser.


0.35 Alastair McKinstry <mckinstry@debian.org>

  * iso_3166:
    - es.po: Updated (fuzzies removed) by Christian Perrier
    - ko.po: Updated by Changwoo Ryu. Closes: #252200
    - bs.po: Updated by Safir Secerovic
    - pt.po: Updated by Miguel Figueiredo
    - nl.po: Fix encoding problem for "Reunion". Closes: #254505
  * iso_4217:
    - tr.po: Updated by Nilgün Belma Bugüner.
  * debian/control:
    - Add Build dependency on python-xml for build script. Closes: #254613.
  * iso_*.xml:
    - Install XML files in /usr/share/xml/iso-codes
    - Build POT files from XML files instead.
  * No longer ship iso_639.tab, iso_4217.tab; iso_3166.tab deprecated in
    favour of iso_3166.xml.

 -- Alastair McKinstry <mckinstry@debian.org>  Tue, 15 Jun 2004 09:03:49 +0200

0.34 Alastair McKinstry <mckinstry@debian.org>


  * iso_3166.tab: Now generated from iso_3166.xml.
     Lists short names from XML. If a 'common_name' element exists,
     use it instead.
  * Now depend on python. Closes: #251329.
  * iso_3166.xml: Add 'common_name' element for Taiwan.
  * iso_3166.pot: Now generated from iso_3166.xml
  * iso_3166.xml: Correct some short names as per standard;
  * iso_3166/*po: Include all elements in iso_3166.xml
  * iso_3166.xml: 'offical_name' -> 'official_name'. Closes: #249520.
  * iso_3166:
    - uk.po: Updated by Eugeniy Meshcheryakov.
    - ru.po: Updated by Nikolai Prokoschenko. Closes: #250495.
    - sk.po: Updated by  Peter KLFMANiK Mann. Closes: #251021.
    - it.po: Updated by Danilo Piazzalunga. Closes: #250777
    - fi.po: Updated by Tapio Lehtonen. Closes: #250739
    - el.po: Updated by Konstantinos Margaritis
    - de.po: Updated by Dennis Stampfer
    - eu.po: Updated by Piarres Beobide Egaña. Closes: #252058
    - lt.po: Updated by Kęstutis Biliūnas.
  * iso_3166_1:
    - lt.po: Updated by Kęstutis Biliūnas.
  * iso_3166_2:
    - nl.po: Updated by Elros Cyriatan.
  * iso_3166_3:
    - lt.po: Updated by Kęstutis Biliūnas.
  * iso_4217:
    - lt.po: New, added by Kęstutis Biliūnas.

 -- Alastair McKinstry <mckinstry@debian.org>  Thur, 10 Jun 2004 10:32:47 +0100

0.33 Alastair McKinstry <mckinstry@debian.org>

  * iso_3166:
    - sq.po: Updated Albanian translation by Elian Myftiu.
    - zh_CN.po: Updated by Carlos Z.F. Liu.  Closes: #247290.
    - nn.po/nb.po: Updated by Karl Ove Hufthammer. Closes: #248932
    - iso_3166.xml: Correct some short-version names.
  * iso_3166_1:
    - uk.po: Updated by Eugeniy Meshcheryakov.
    - ja.po: Updated by Kenshi Muto.
  * iso_639:
    - ja.po: Updated by Kenshi Muto.
  * Add iso2pot.py, iso2tab.py to convert XML data file to .pot files,
    tab files (not yet used).

0.31 Alastair McKinstry <mckinstry@debian.org>

	* all *.po: Add name to Report-Msgid-Bugs-To: field.
	* Official name of Afghanistan is now
	  "The Transitional Islamic State of Afghanistan".
	* iso_3166_1: Aland Islands -> Åland Islands.
	* iso_3166:
	    - pl.po: Updated by Marek Laska.
	    - sk.po: Updated by Peter Mann.
	    - nl.po: Updated by Luk Claes.
            - cs.po: Updated by Miroslav Kure.
            - ru.po: Updated by Nikolai Prokoschenko.
            - eu.po: Updated by Piarres Beobide Egaña.
            - da.po: Updated by Claus Hindsgaul
	* iso_3166_2:
            - da.po: Updated by Claus Hindsgaul
	* iso_3166_3:
	    - cs.po: Updated by Miroslav Kure.
            - ro.po: Updated by Laurentiu Buzdugan.
	* iso_639:
            - ja.po: Updated by Kenshi Muto.
	    - nn.po: Updated by Karl Ove Hufthammer
            - da.po: Updated by Claus Hindsgaul

0.30 Alastair McKinstry <mckinstry@debian.org>

	* iso_3166:
	    - es.po: Updated by Javier Fernández-Sanguino Peña
	    - nl.po: Unfuzzied entries from Elros Cyriatan (TR. project)
	    - nl.po: Updated by Luk Claes.
	    - so.po: New, data from ICU-2.8.
	    - am.po: New, data from ICU-2.8.
	    - om.po: New, data from ICU-2.8.
	    - hi.po: New, data from ICU-2.8.
	    - te.po: New, data from ICU-2.8.
	    - sw.po: New, data from ICU-2.8.
	    - kok.po: New, data from ICU-2.8.
	    - mr.po: New, data from ICU-2.8.
	    - ro.po: Updated by Eddy Petrisor.
	    - de.po: Updated by Dennis Stampfer.
	    - he.po: New, added by Lior Kaplan.
	    - id.po: Updated by Arief S Fitrianto.
	    - ko.po: Updated by Changwoo Ryu. Closes: #242200.
	    - pt_BR.po: Updated by Andre Luis Lopes.  Closes: #242152.
	    - da.po: Updated by Claus Hindsgaul.
	    - zh_TW.po: Updated by Tetralet.
	* iso_3166_1:
	    - all: Cote -> Côte.
	    - da.po: Updated by Claus Hindsgaul.
	    - wa.po: Updated by Pablo Saratxaga.
	* iso_3166_2:
	    - uk.po: Updated by Eugeniy Meshcheryakov.
	    - da.po: Updated by Claus Hindsgaul.
	    - all: "South-Weat" -> "South-West".
	    - all: "Karnten" -> "Kärnten".
	    - all: Ooat-Vlaanderen -> Oost-Vlaanderen.
	    - all: Corrected "Oulun Lasni" entry; bad chars removed.
	    - all: regions in the Netherlands: Drente->Drenthe, Noord
	      Holland->Noord-Holland, Noord Brabant->Noord-Brabant, 
	      Zuid Holland->Zuid-Holland, Vlaams Brabant -> Vlaams-Brabant.
	* iso_3166_3:
	    - lt.po: Updated by Kęstutis Biliūnas.
       	    - da.po: Updated by Claus Hindsgaul.
	* iso_639:
	    - all: Remove obsolete comments.
	    - all: Provencal -> Provençal ; Bokmal -> Bøkmal
	    - iso_639.tab, iso_316.xml: 2-letter code for Urdu is "ur".
	    - es.po: Updated by Javier Fernández-Sanguino Peña.
	    - lt.po: Updated by Kęstutis Biliūnas.
	    - wa.po: Updated by Pablo Saratxaga.
	    - da.po: Updated by Claus Hindsgaul.
	    - om.po: New, data from ICU-2.8.
	    - te.po: New, data from ICU-2.8.
	    - kok.po: New, data from ICU-2.8.
	    - sw.po: New, data from ICU-2.8.
	    - mr.po: New, data from ICU-2.8.
	* iso_4217:
	    - all: Zloty -> Złoty.
	    - nl.po: Updated by Elros Cyriatan.
	    - da.po: Updated by Claus Hindsgaul.

0.29 Alastair McKinstry <mckinstry@debian.org>

	* iso_639: Add all recent changes to ISO-639 standard.
	* iso_3166.xml, iso_639.xml, iso_3166_2.xml, iso_4217.xml:
	   Ensure XML files provided are valid XML.
	* iso_3166/uk.po, iso_3166/iso_3166_1/uk.po, iso_4217/uk.po,
	  iso_639/uk.po: Updated by Eugeniy Meshcheryakov.
	* iso_3166/nl.po: Update by Bas Zoetekouw.
	* iso_3166/hu.po: Update by VEROK Istvan.
	* iso_3166, iso_639/ja.po: Update by Kenshi Muto.
	* iso_3166/fr.po: merge iso_3166 translations into iso_3166_1;
	  iso_3166_2.tab:  complete and update regions for France. 
	  Added POT files for iso_3166, iso_639 and iso_4217 directories
          Not removed anymore when "make clean"
	    - Christian Perrier
	* iso_3166/cs.po, iso_3166/iso_3166_1/cs.po: Update by 
	  Miroslav Kure
	* iso_3166/id.po: Update by Arief S Fitrianto.	
        * Javier Fernandez Sanguino-Pena
          - updated iso_3166/es.po
        * Konstantinos Margaritis
          - updated iso_3166/el.po
          - another update to iso_3166/el.po and iso_639/el.po
        * Frans Pop
          - updated iso_3166/nl.po
        * Kęstutis Biliūnas
          - updated iso_3166/lt.po
          - updated iso_3166_1/lt.po
          - updated iso_639/lt.po
        * Miguel Figueiredo
          - updated iso_3166/pt.po. Closes: #241330
	
0.28 Alastair McKinstry <mckinstry@computer.org>

	* iso_639/fr.po: update (wrong case for dutch) by Christian Perrier.
	* iso_3166/zh_CN.po: Update by Carlos Z.F. Liu
	* iso_639: Add code for Classical Newari	
	* iso_3166/az.po: Update by  Mətin ?mirov
	* iso_3166:
	  - change TW to "Taiwan, Province of China".
	  - change GB to "United Kingdom"
	*  Add iso_3166.xml, iso_3166_2.xml, iso_639.xml, iso_4217.xml.

0.27 Alastair McKinstry <mckinstry@computer.org>

	* iso_639/fr.po, iso_3166_2/fr.po, iso_3166_2/cs.po,
	  iso_3166/fr.po:
	  Updated by Christian Perrier.
	* iso_3166_2/ja.po: Updated by Kenshi Muto.
	* iso_3166_2/iso_3166_2.tab, iso_3166_2/*.po:
	  Updated to Standard as of 2004-03-08 (Newsletter 6);
	  Added accents to entry names.

0.26 Alastair McKinstry <mckinstry@computer.org>

	* iso_3166/wa.po: Updated thanks to Pablo Saratxaga.
	* iso_3166_2 /ja.po: Updates thanks to tsuno.
	* iso_3166/5fr.po, iso_639/fr.po: Updates thanks to Christian Perrier.
	* iso_3166/cs.po: Updated thanks to Miroslav Kure.
	* iso_3166/Makefile: Ensure iso_3166.tab is installed.

0.25 Alastair McKinstry <mckinstry@computer.org>

	* iso_3166/zh_CN.po: Updated thanks to Carlos Z.F. Liu.
	* iso_3166/bg.po: Updated thanks to  Ognyan Kulev.
	* iso3166/sq.po: New translation thanks to Elian Myftiu.
	* iso_639/fr.po: Updated thanks to Christian Perrier.
	* iso_4217/fr.po: Updated thanks to Christian Perrier.
	* iso_639.tab: "nl" means Dutch, not Dravidian.
	* iso_639.tab: Herero is "hz", not "he".
	* iso_639.tab: Nynorsk is "nn", not "no".
	* iso_3166: New entries for the Åland Islands.
	* iso_3166_3.tab: Corrections to FX, YU Entries.
	* iso_3166_2.*: Updated to ISO-3166-2 newsletter 5.
	* Makefiles: tidyup. Don't put line numbers in the .po files, just
	   comments; move iso_3166_*.tab files into the appropriate
	   directories.
	* iso_3166/ko.po: Update thanks to  Changwoo Ryu.
	* iso_3166_tab: Corrected comments on Switzerland cantons.
	* iso_3166/uk.po: Updated thanks to Eugeniy Meshcheryakov.
	* ja.po: Japanese updates thanks to Kenshi Muto.

0.24 Alastair McKinstry <mckinstry@computer.org>
	
	* iso_3166/sv.po: Fixed typo that broke build
	* uk.po: Updated Ukranian thanks to Eugeniy Meshcheryakov.
	* iso_3166/zh_CN.po: Updated by Carlos Z.F. Liu.

0.23 Alastair McKinstry <mckinstry@computer.org>

	* iso_3166/de.po: Updated by Simon Huerlimann.
	* iso_3166/pt.po: Updated by  Miguel Figuereido.
	* iso_4217/cs.po: Updated by Miroslav Kure.
	* iso_3166/fr.po: Updated by Christian Perrier
	* el.po: Updated Greek files from Konstantinos Margaritis.
	* Removed superflous spaces and tabs in entries.
	
0.22 Alastair McKinstry <mckinstry@computer.org>

	* iso_3166/zh_CN.po: New translation from Carlos Z.F. Liu.
	* iso_4217/pl.po: New translation from Bartosz Fenski aka fEnIo.
	* iso_3166/de.po: New translations from Bruno Haible.
	* iso_639/de.po: New translations from Bruno Haible.
	* iso_3166/ru.po: New translations from Nikolai Prokoschenko.
	* iso_3166/wa.po: New translations from Pablo Saratxaga.
	* iso_3166/cs.po: New Czech translations from Miroslav Kure.
	* iso_639.pot: Added comments for translators as to where
	    some languages are spoken
	* iso_3166.tab: Added Serbia and Montenegro entry
	* iso_3166_1.tab: Formal name of Germany is "Federal Republic of
	    Germany"
	* iso_3166.tab: "Timor Leste" is "Timor-Leste"
	* iso_3166.tab: Shortened Vatican entry to "Vatican City"
	* all pot files: Added myself to "Reported-Msgid-Bugs" field.
	* iso_3166_1.tab: Added all missing entries for country names
	* iso_639.pot: Add translator comment about "Sotho".
	* iso_3166.tab: Change "Russian Federation" to "Russia"
	* iso_3166: Changed "East Timor" to "Timor-Leste"
	* iso_3166.tab: Removed Yugolav country code.
	* iso_639: Removed "Soth Ndebele" typo.
	* iso_639/af.po: New translations from Frikkie Thirion.
	* iso_639/hu.po: New translations from Andras Timar.