File: changelog

package info (click to toggle)
localechooser 2.84
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,612 kB
  • sloc: sh: 1,096; perl: 187; makefile: 71; awk: 42
file content (2306 lines) | stat: -rw-r--r-- 81,292 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
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
localechooser (2.84) unstable; urgency=medium
  * Team upload

  [ Updated translations ]
  * Vietnamese (vi.po) by Trần Ngọc Quân

 -- Holger Wansing <hwansing@mailbox.org>  Wed, 06 Mar 2019 22:30:09 +0100

localechooser (2.83) unstable; urgency=medium
  * Team upload

  * Remove trailing whitespaces from control and rules file to fix lintian tag.

  [ Updated translations ]
  * Danish (da.po) by Joe Hansen
  * Persian (fa.po) by nima sahraneshin
  * Finnish (fi.po) by Juhani Numminen

 -- Holger Wansing <hwansing@mailbox.org>  Sat, 09 Feb 2019 09:49:07 +0100

localechooser (2.82) unstable; urgency=medium

  * Team upload
  * Add missing english string 'Choose language' to some translations:
    * Bosnian (bs.po)
    * Hungarian (hu.po)
    * Tajik (tg.po)
  * Remove trailing whitespaces from changelog file, to fix lintian tag.

 -- Holger Wansing <hwansing@mailbox.org>  Sun, 23 Dec 2018 14:00:10 +0100

localechooser (2.81) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Asturian (ast.po) by Xuacu Saturio
  * Galician (gl.po) by mantinan
  * Latvian (lv.po) by Tranzistors

 -- Holger Wansing <hwansing@mailbox.org>  Tue, 30 Oct 2018 18:45:55 +0100

localechooser (2.80) unstable; urgency=medium

  * Team upload

  [ Cyril Brulebois ]
  * Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).

  [ Updated translations ]
  * German (de.po) by Holger Wansing
  * Hebrew (he.po) by Yaron Shahrabani

 -- Holger Wansing <hwansing@mailbox.org>  Sun, 12 Aug 2018 09:12:18 +0200

localechooser (2.79) unstable; urgency=medium

  [ Updated translations ]
  * Welsh (cy.po) by Huw Waters

 -- Christian Perrier <bubulle@debian.org>  Mon, 02 Apr 2018 08:53:05 +0200

localechooser (2.78) unstable; urgency=medium

  [ Samuel Thibault ]
  * Enable all languages when using speakup_dummy too, which can also support
    any UTF-8 language.

 -- Christian Perrier <bubulle@debian.org>  Mon, 12 Mar 2018 06:46:47 +0100

localechooser (2.77) unstable; urgency=medium

  [ Samuel Thibault ]
  * languagelist: Enable Georgian and Lao in bterm.

  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <bubulle@debian.org>  Fri, 09 Mar 2018 06:46:50 +0100

localechooser (2.76) unstable; urgency=medium

  [ Cyril Brulebois ]
  * Use iso_3166-1.mo filename instead of the compatibility symlink, after
    a rename in iso-codes 3.67; thanks to Dr. Tobias Quathamer for the
    report and the patch (Closes: #889963).

 -- Christian Perrier <bubulle@debian.org>  Mon, 12 Feb 2018 06:54:41 +0100

localechooser (2.75) unstable; urgency=medium

  [ Updated translations ]
  * Persian (fa.po) by nima sahraneshin
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <bubulle@debian.org>  Thu, 01 Feb 2018 19:32:13 +0100

localechooser (2.74) unstable; urgency=medium

  [ Samuel Thibault ]
  * Enable all languages when using speakup_soft, which supports any UTF-8
    language.

 -- Christian Perrier <bubulle@debian.org>  Fri, 05 Jan 2018 06:34:31 +0100

localechooser (2.73) unstable; urgency=medium

  [ Updated translations ]
  * Nepali (ne.po) by Jeewal Kunwar
  * Simplified Chinese (zh_CN.po) by Boyuan Yang

 -- Christian Perrier <bubulle@debian.org>  Sun, 24 Dec 2017 10:23:12 +0100

localechooser (2.72) unstable; urgency=medium

  [ Updated translations ]
  * Norwegian Nynorsk (nn.po) by Allan Nordhøy

 -- Christian Perrier <bubulle@debian.org>  Sat, 25 Nov 2017 09:18:26 +0100

localechooser (2.71) unstable; urgency=medium

  [ Updated translations ]
  * Greek (el.po) by Sotirios Vrachas
  * Albanian (sq.po) by Redon Skikuli

 -- Christian Perrier <bubulle@debian.org>  Sun, 17 Sep 2017 08:20:22 +0200

localechooser (2.70) unstable; urgency=medium

  [ Updated translations ]
  * Simplified Chinese (zh_CN.po) by Yangfl

 -- Christian Perrier <bubulle@debian.org>  Mon, 26 Jun 2017 16:43:41 +0200

localechooser (2.69) unstable; urgency=medium

  [ Updated translations ]
  * Danish (da.po) by Joe Hansen

 -- Christian Perrier <bubulle@debian.org>  Sun, 18 Sep 2016 17:59:00 +0200

localechooser (2.68) unstable; urgency=medium

  [ Colin Watson ]
  * Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.

 -- Christian Perrier <bubulle@debian.org>  Thu, 11 Feb 2016 18:53:07 +0100

localechooser (2.67) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <bubulle@debian.org>  Sat, 25 Jul 2015 21:41:08 +0200

localechooser (2.66) unstable; urgency=medium

  [ Updated translations ]
  * Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <bubulle@debian.org>  Thu, 25 Jun 2015 11:39:37 +0200

localechooser (2.65) unstable; urgency=medium

  [ Mathieu Trudel-Lapierre ]
  * Fix typo in preseeded language code check.

 -- Christian Perrier <bubulle@debian.org>  Fri, 15 May 2015 07:45:09 +0200

localechooser (2.64) unstable; urgency=low

  [ Updated translations ]
  * Danish (da.po) by Joe Hansen

 -- Christian Perrier <bubulle@debian.org>  Sun, 08 Mar 2015 11:37:00 +0100

localechooser (2.63) unstable; urgency=high

  * Team upload
  * Revert previous commit. Closes: Bug#743348.

 -- Samuel Thibault <sthibault@debian.org>  Wed, 02 Apr 2014 01:56:41 +0200

localechooser (2.62) unstable; urgency=medium

  [ Samuel Thibault ]
  * Show complete English names in C locale. Closes: Bug#734690.

 -- Christian Perrier <bubulle@debian.org>  Sat, 22 Mar 2014 19:17:40 +0100

localechooser (2.61) unstable; urgency=low

  * Add entry for Jamaican Creole English

  [ Updated translations ]
  * Simplified Chinese (zh_CN.po) by YunQiang Su

 -- Cyril Brulebois <kibi@debian.org>  Wed, 12 Mar 2014 02:17:05 +0100

localechooser (2.60) unstable; urgency=low

  * Add entry for Chitwania Tharu

  [ Updated translations ]
  * Bosnian (bs.po) by Amila Valjevčić
  * Hungarian (hu.po) by Judit Gyimesi

 -- Christian Perrier <bubulle@debian.org>  Tue, 10 Dec 2013 08:07:05 +0100

localechooser (2.59) unstable; urgency=low

  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <bubulle@debian.org>  Sat, 09 Nov 2013 18:08:28 +0100

localechooser (2.58) unstable; urgency=low

  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <bubulle@debian.org>  Sat, 14 Sep 2013 15:24:22 +0200

localechooser (2.57) unstable; urgency=low

  * Activate Tajik in the text installer

 -- Christian Perrier <bubulle@debian.org>  Mon, 19 Aug 2013 07:12:09 +0200

localechooser (2.56) unstable; urgency=low

  * Add entry for Tajik

 -- Christian Perrier <bubulle@debian.org>  Thu, 15 Aug 2013 17:26:24 +0200

localechooser (2.55) unstable; urgency=low

  [ Dmitrijs Ledkovs ]
  * Set debian source format to '3.0 (native)'.
  * Bump debhelper compat level to 9.
  * Set Vcs-* to canonical format.

 -- Christian Perrier <bubulle@debian.org>  Sat, 13 Jul 2013 13:58:04 +0200

localechooser (2.54) unstable; urgency=low

  [ Samuel Thibault ]
  * Fix hurd-i386 Mach TERM name.

  [ Updated translations ]
  * Croatian (hr.po) by Tomislav Krznar

 -- Christian Perrier <bubulle@debian.org>  Sun, 12 May 2013 08:37:25 +0200

localechooser (2.53) unstable; urgency=low

  [ Steve Langasek ]
  * languagelist: Use 'Bangla' as the preferred name for the language of
    Bangladesh, for consistency with iso-codes; thanks to Gunnar Hjalmarsson
    <gunnarhj@ubuntu.com> for the patch.  LP: #991002.

 -- Christian Perrier <bubulle@debian.org>  Sat, 23 Mar 2013 08:48:28 +0100

localechooser (2.52) unstable; urgency=low

  * Fix default locale for Northern Sami (se_NO.UTF-8 no longer exists)

 -- Christian Perrier <bubulle@debian.org>  Sun, 03 Mar 2013 15:48:11 +0100

localechooser (2.51) unstable; urgency=low

  * Rebuild to include latest translations of ISO-3166
    (noticeably the name of "The State of Palestine")

 -- Christian Perrier <bubulle@debian.org>  Sun, 03 Mar 2013 14:44:52 +0100

localechooser (2.50) unstable; urgency=low

  [ Updated translations ]
  * German (de.po) by Holger Wansing

 -- Christian Perrier <bubulle@debian.org>  Tue, 01 Jan 2013 09:19:44 +0100

localechooser (2.49) unstable; urgency=low

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Japanese (ja.po) by Kenshi Muto

 -- Christian Perrier <bubulle@debian.org>  Tue, 11 Dec 2012 06:07:44 +0100

localechooser (2.48) unstable; urgency=low

  [ Updated translations ]
  * Asturian (ast.po) by ivarela
  * Spanish (es.po) by Javier Fernández-Sanguino
  * Galician (gl.po) by Jorge Barreiro
  * Ukrainian (uk.po) by Yuri Chornoivan

 -- Christian Perrier <bubulle@debian.org>  Wed, 17 Oct 2012 20:26:59 +0200

localechooser (2.47) unstable; urgency=low

  [ Updated translations ]
  * Macedonian (mk.po) by Arangel Angov

 -- Christian Perrier <bubulle@debian.org>  Sun, 23 Sep 2012 07:43:10 +0200

localechooser (2.46) unstable; urgency=low

  [ Samuel Thibault ]
  * Enable level 4 with network-console installs. Thanks Eugeniy Meshcheryakov
    for the report and initial patch. Closes: Bug#677931.
  * Call console-setup font-switch script to support level 2 on bare Linux
    console.
  * Do not skip non-ASCII country names by telling gettext they are encoded in
    UTF-8. Closes: Bug#687249.

 -- Christian Perrier <bubulle@debian.org>  Mon, 17 Sep 2012 07:12:01 +0200

localechooser (2.44) unstable; urgency=low

  * Fix accidentally-combined Dutch and Dzongkha entries in languagelist.

  [ Updated translations ]
  * German (de.po) by Holger Wansing

 -- Colin Watson <cjwatson@debian.org>  Mon, 20 Aug 2012 23:24:57 +0100

localechooser (2.43) unstable; urgency=low

  * Replace XC-Package-Type by Package-Type
  * Re-enable Welsh

 -- Christian Perrier <bubulle@debian.org>  Sun, 17 Jun 2012 11:46:30 +0200

localechooser (2.42) unstable; urgency=low

  * Team upload

  [ Updated translations ]
  * Welsh (cy.po) by Daffyd Tomos

 -- Christian Perrier <bubulle@debian.org>  Fri, 15 Jun 2012 06:30:39 +0200

localechooser (2.41) unstable; urgency=low

  * Team upload

  [ Joey Hess ]
  * Add SS BQ and SX to regionmap.

  [ Updated translations ]
  * German (de.po) by Holger Wansing
  * Galician (gl.po) by Jorge Barreiro
  * Lithuanian (lt.po) by Rimas Kudelis
  * Latvian (lv.po) by Rūdolfs Mazurs
  * Panjabi (pa.po) by A S Alam

 -- Christian Perrier <bubulle@debian.org>  Thu, 14 Jun 2012 22:23:04 +0200

localechooser (2.40) unstable; urgency=low

  * Add commented entry for Sindhi
  * Add entry for Tibetan (not commented as
    the translation team completed the first two sublevels)

 -- Christian Perrier <bubulle@debian.org>  Tue, 17 Apr 2012 19:37:13 +0200

localechooser (2.39) unstable; urgency=low

  [ Christian Perrier ]
  * Add commented entry for Ossetian
  * Add commented entry for Burmese

  [ Aurelien Jarno ]
  * Add support for s390x.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * German (de.po) by Holger Wansing
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Kumar Appaiah
  * Italian (it.po) by Milo Casagrande
  * Kannada (kn.po) by vignesh prabhu
  * Korean (ko.po) by Changwoo Ryu
  * Polish (pl.po) by Marcin Owsiany
  * Romanian (ro.po) by Ioan Eugen Stan
  * Sinhala (si.po) by Danishka Navin
  * Simplified Chinese (zh_CN.po) by YunQiang Su

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 06 Nov 2011 20:21:27 +0100

localechooser (2.38) unstable; urgency=low

  [ Samuel Thibault ]
  * Switch espeakup language around language selection. Closes: #630477

  [ Colin Watson ]
  * Make sure to fail the build if isoquery fails for some reason.

  [ Updated translations ]
  * Hebrew (he.po) by Lior Kaplan
  * Macedonian (mk.po) by Arangel Angov

 -- Colin Watson <cjwatson@debian.org>  Fri, 29 Jul 2011 15:04:16 +0100

localechooser (2.37) unstable; urgency=low

  * Correct (again) name of Uyghur language (missing first letter)

 -- Christian Perrier <bubulle@debian.org>  Mon, 02 May 2011 20:56:36 +0200

localechooser (2.36) unstable; urgency=low

  * Correct name of Uyghur language

 -- Christian Perrier <bubulle@debian.org>  Sat, 30 Apr 2011 13:37:57 +0200

localechooser (2.35) unstable; urgency=low

  [ Christian Perrier ]
  * Activate Uyghur

  [ Samuel Thibault ]
  * localechooser: Set display level 0 for the Mach console.

  [ Colin Watson ]
  * Add post-base-installer.d/05localechooser to list of scripts to
    syntax-check.
  * Ensure that SUPPORTED-short never contains commented entries, even if
    /usr/share/i18n/SUPPORTED does.

 -- Christian Perrier <bubulle@debian.org>  Thu, 21 Apr 2011 20:06:03 +0200

localechooser (2.34) unstable; urgency=low

  [ Updated translations ]
  * Russian (ru.po) by Yuri Kozlov

 -- Christian Perrier <bubulle@debian.org>  Thu, 30 Dec 2010 12:03:28 +0100

localechooser (2.33) unstable; urgency=low

  [ Updated translations ]
  * Northern Sami (se.po) by Børre Gaup

 -- Otavio Salvador <otavio@debian.org>  Fri, 24 Dec 2010 19:56:59 -0200

localechooser (2.32) unstable; urgency=low

  * Correct default country for Sinhala to Sri Lanka. Closes: #605729

 -- Christian Perrier <bubulle@debian.org>  Sat, 04 Dec 2010 07:43:41 +0100

localechooser (2.31) unstable; urgency=low

  * Activate Sinhala
  * Activate Lao

 -- Christian Perrier <bubulle@debian.org>  Mon, 29 Nov 2010 19:17:22 +0100

localechooser (2.30) unstable; urgency=low

  [ Christian Perrier ]
  * Activate Icelandic

  [ Updated translations ]
  * Bengali (bn.po) by Israt Jahan
  * Catalan (ca.po) by Jordi Mallach
  * Dutch (nl.po) by Eric Spreen

 -- Otavio Salvador <otavio@debian.org>  Fri, 12 Nov 2010 17:49:57 -0200

localechooser (2.29) unstable; urgency=low

  * De-activate Serbian (Latin) which shouldn't have been activated.
    as the translation is not working, yet.

 -- Christian Perrier <bubulle@debian.org>  Mon, 18 Oct 2010 18:12:14 +0200

localechooser (2.28) unstable; urgency=low

  [ Christian Perrier ]
  * Add commented entry for Serbian (Latin)
  * Re-activate Serbian and name it "Serbian (Cyrillic)"
  * Activate Telugu

  [ Jeremie Koenig ]
  * Set display level 3 for the Hurd console (closes: #592690).

  [ Aurelien Jarno ]
  * Set display level 1 for the GNU/kFreeBSD console.

  [ Updated translations ]
  * Asturian (ast.po) by maacub
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bosnian (bs.po) by Armin Beširović
  * Danish (da.po) by Jacob Sparre Andersen
  * Persian (fa.po) by Ebrahim Byagowi
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Serbian (sr.po) by Karolina Kalic
  * Telugu (te.po) by Arjuna Rao Chavala

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 17 Aug 2010 21:29:02 +0200

localechooser (2.27) unstable; urgency=low

  * Activate Persian language
  * De-activate Wolof, Serbian, Welsh (too incomplete translations)

  [ Updated translations ]
  * Amharic (am.po) by Tegegne Tefera
  * Asturian (ast.po) by astur
  * Belarusian (be.po) by Viktar Siarheichyk
  * Bosnian (bs.po) by Armin Beširović
  * Catalan (ca.po) by Jordi Mallach
  * Danish (da.po) by Jacob Sparre Andersen
  * German (de.po) by Holger Wansing
  * Dzongkha (dz.po) by Jurmey Rabgay
  * Persian (fa.po) by acathur
  * Galician (gl.po) by Jorge Barreiro
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Kumar Appaiah
  * Croatian (hr.po) by Josip Rodin
  * Hungarian (hu.po) by SZERVÁC Attila
  * Indonesian (id.po) by Arief S Fitrianto
  * Georgian (ka.po) by Aiet Kolkhi
  * Kazakh (kk.po) by Baurzhan Muftakhidinov
  * Central Khmer (km.po) by Khoem Sokhem
  * Korean (ko.po) by Changwoo Ryu
  * Kurdish (ku.po) by Erdal Ronahi
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Latvian (lv.po) by Aigars Mahinovs
  * Macedonian (mk.po) by Arangel Angov
  * Malayalam (ml.po) by Praveen Arimbrathodiyil
  * Nepali (ne.po)
  * Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
  * Panjabi (pa.po) by A S Alam
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Romanian (ro.po) by ioan-eugen stan
  * Tamil (ta.po) by Dr,T,Vasudevan
  * Tagalog (tl.po) by Eric Pareja
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov
  * Simplified Chinese (zh_CN.po) by 苏运强

 -- Christian Perrier <bubulle@debian.org>  Sun, 11 Jul 2010 14:07:16 +0200

localechooser (2.26) unstable; urgency=low

  * Update isinstallable script for new auto-install framework.
    Requires preseed (>= 1.45).

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Danish (da.po) by Anders Jenbo
  * Esperanto (eo.po) by Felipe Castro
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * French (fr.po) by Christian Perrier
  * Hebrew (he.po) by Omer Zak
  * Marathi (mr.po) by Sampada
  * Panjabi (pa.po) by A S Alam
  * Slovenian (sl.po) by Vanja Cvelbar
  * Albanian (sq.po) by Elian Myftiu

 -- Frans Pop <fjp@debian.org>  Wed, 24 Mar 2010 16:36:10 +0100

localechooser (2.25) unstable; urgency=low

  [ Frans Pop ]
  * Make state engine slightly more robust.

  [ Colin Watson ]
  * Remove debian/templates.tmp on clean.

  [ Christian Perrier ]
  * Enable Thai for the text (framebuffer) installer

 -- Christian Perrier <bubulle@debian.org>  Sun, 14 Feb 2010 17:16:07 +0100

localechooser (2.24) unstable; urgency=low

  * Use Norwegian Bokmaal country names if no iso-codes translation is
    available for Northern Sami.
  * Correct display of translation for two country selection strings.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Asturian (ast.po) by marquinos
  * Greek, Modern (1453-) (el.po)
  * Estonian (et.po) by Mattias Põldaru
  * Italian (it.po) by Milo Casagrande
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Slovak (sk.po) by Ivan Masár
  * Slovenian (sl.po) by Vanja Cvelbar

 -- Frans Pop <fjp@debian.org>  Fri, 29 Jan 2010 23:36:54 +0100

localechooser (2.23) unstable; urgency=low

  * Also allow selection of a "preferred locale", but only at medium priority,
    when the user selects a combination of language and country for which a
    locale is defined if multiple UTF-8 locales exist for the language.
    Closes: #563861.
  * Change priority of questions re. selection of additional locales to low.
    The selection of "raw" locales requires significant understanding of their
    meaning and has become less relevant than it used to be.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Holger Wansing
  * Esperanto (eo.po) by Felipe Castro
  * Finnish (fi.po) by Esko Arajärvi
  * French (fr.po) by Christian Perrier
  * Japanese (ja.po) by Kenshi Muto
  * Dutch (nl.po) by Frans Pop
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (pt.po) by Miguel Figueiredo
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Slovenian (sl.po) by Vanja Cvelbar
  * Swedish (sv.po) by Daniel Nylander
  * Turkish (tr.po) by Mert Dirik

 -- Frans Pop <fjp@debian.org>  Wed, 13 Jan 2010 07:30:30 +0100

localechooser (2.22) unstable; urgency=low

  * Further improve location (country) selection dialogs. Closes: #559795.
    In part prompted by comments from Florian Zumbiehl.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Asturian (ast.po) by marquinos
  * Belarusian (be.po) by Pavel Piatruk
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Holger Wansing
  * French (fr.po) by Christian Perrier
  * Italian (it.po) by Milo Casagrande
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
  * Dutch (nl.po) by Frans Pop
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (pt.po) by Miguel Figueiredo
  * Russian (ru.po) by Yuri Kozlov
  * Slovenian (sl.po) by Vanja Cvelbar
  * Simplified Chinese (zh_CN.po) by 苏运强

 -- Frans Pop <fjp@debian.org>  Wed, 06 Jan 2010 00:28:02 +0100

localechooser (2.21) unstable; urgency=low

  * Prefer official language variants by adding the combination of selected
    language and country to the front on the language list (closes: #560045).
    If a preferred locale was selected, instead add the language and country
    combination from that to the languagelist as it will most likely also
    indicate the preferred language variant.
  * Change the dialog title to match the main stages of localechooser:
    selection of language, location and locale(s). An old flaw now finally
    resolved, prompted by a discussion with Florian Zumbiehl in #559795.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Asturian (ast.po) by Softastur
  * Belarusian (be.po) by Pavel Piatruk
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Holger Wansing
  * Greek, Modern (1453-) (el.po)
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Estonian (et.po) by Mattias Põldaru
  * French (fr.po) by Christian Perrier
  * Hungarian (hu.po) by SZERVÁC Attila
  * Italian (it.po) by Milo Casagrande
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Dutch (nl.po) by Frans Pop
  * Portuguese (pt.po) by Miguel Figueiredo
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Slovenian (sl.po) by Vanja Cvelbar
  * Swedish (sv.po) by Daniel Nylander
  * Turkish (tr.po) by Mert Dirik

 -- Frans Pop <fjp@debian.org>  Wed, 23 Dec 2009 00:24:14 +0100

localechooser (2.20) unstable; urgency=low

  * Fix syntax error.

 -- Frans Pop <fjp@debian.org>  Tue, 08 Dec 2009 15:54:25 +0100

localechooser (2.19) unstable; urgency=low

  [ Colin Watson ]
  * Make sure /target/etc/default exists before creating
    /target/etc/default/locale (LP: #491198).

  [ Frans Pop ]
  * Skip selection of a preferred locale if the selected language does not
    have a shortlist. Closes: #559565.
  * Preserve selection of C when localechooser is run a second time.

  [ Updated translations ]
  * Asturian (ast.po) by astur
  * Bulgarian (bg.po) by Damyan Ivanov
  * Greek, Modern (1453-) (el.po)
  * French (fr.po) by Christian Perrier
  * Japanese (ja.po) by Kenshi Muto
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Marathi (mr.po) by Sampada
  * Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (pt.po) by Miguel Figueiredo
  * Slovak (sk.po) by Ivan Masár
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan

 -- Frans Pop <fjp@debian.org>  Sat, 05 Dec 2009 14:30:56 +0100

localechooser (2.18) unstable; urgency=low

  * Improve syntax checks for shell scripts during build.
  * If only locale is preseeded and the value includes a locale postfix, then
    treat the locale as preseeded. If only a language and country code are
    passed, then let localechooser determine the locale. The last is done to
    avoid that legacy locales get set accidentally.
  * Drop debian-installer/charmap template. As of console-setup version 1.48
    it is no longer needed. For Lenny installs the lenny-support udeb ensures
    that the template is set to the correct value in the target environment
    before console-setup is installed. Closes: #556289.
  * Allow selection of a "preferred locale" when the user selects a combination
    of language and country for which no locale is defined and there exist
    multiple UTF-8 locales for the language. Improved solution for #552560.
  * Allow users who select a language that has only one locale to select a
    different country at default priority.
  * Emphasize the role of the selected country in setting the time zone.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Holger Wansing
  * Esperanto (eo.po) by Felipe Castro
  * Estonian (et.po) by Mattias Põldaru
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Marce Villarino
  * Italian (it.po) by Milo Casagrande
  * Dutch (nl.po) by Frans Pop
  * Russian (ru.po) by Yuri Kozlov

 -- Frans Pop <fjp@debian.org>  Mon, 23 Nov 2009 11:29:56 +0100

localechooser (2.17) unstable; urgency=low

  * Move selection of additional locales before selection of a default locale
    so that any additional locale can be set as default. If no additional
    locales are selected, the dialog to select a default can now be skipped.
    Closes: #552560.
  * Rewrite of the templates for all primary dialogs to fix style issues and
    improve usability. Add a help dialog for both locale dialogs explaining
    what a locale is.
  * Prevent overriding a language explicitly selected by the user. Makes it
    possible to select pt (pt_PT) as language in combination with BR as country.
  * Allow separate preseeding of language and country. Closes: #469680.
    The old method of specifying only locale remains supported.
  * Preserve preseeded locale if language/country were also preseeded.
    Closes: #553389.
  * Various code cleanups and improvements.

  [ Updated translations ]
  * Asturian (ast.po) by Softastur
  * French (fr.po) by Christian Perrier
  * Dutch (nl.po) by Frans Pop
  * Portuguese (pt.po) by Miguel Figueiredo
  * Swedish (sv.po) by Daniel Nylander

 -- Frans Pop <fjp@debian.org>  Mon, 16 Nov 2009 13:58:18 +0100

localechooser (2.16) unstable; urgency=low

  * Change localechooser to 'Architecture: any' so we really do get a
    different menu item number for s390.
  * Drop dependency on dash/ash as dash is now an essential package.

 -- Frans Pop <fjp@debian.org>  Wed, 28 Oct 2009 22:33:27 +0100

localechooser (2.15) unstable; urgency=low

  [ Colin Watson ]
  * Upgrade to debhelper v7.

  [ Frans Pop ]
  * Remove no longer needed Lintian override for missing Standards-Version
    field.
  * Set Installer-Menu-Item to 2110 for s390 so localechooser runs after
    network-console; country selection is easier in the newt interface than
    the text interface. Closes: #316006.

  [ Updated translations ]
  * Korean (ko.po) by Changwoo Ryu

 -- Frans Pop <fjp@debian.org>  Wed, 28 Oct 2009 16:43:26 +0100

localechooser (2.14) unstable; urgency=low

  * Only check for validlocale if any locales need to be generated, as
    otherwise we won't have installed the locales package (closes: #538343).

  [ Aurelien Jarno ]
  * Don't try to print non-ascii characters on a cons25 terminal.

  [ Updated translations ]
  * Basque (eu.po) by Piarres Beobide
  * Italian (it.po) by Milo Casagrande

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 18 Aug 2009 14:42:40 +0200

localechooser (2.13) unstable; urgency=low

  [ Colin Watson ]
  * mktemplates.shortlist sometimes seems to hang in "sed -e 's/,/\\\\,/'"
    when running in a UTF-8 locale. Work around this by forcing LC_ALL=C,
    which we need to be able to operate in anyway for buildds.

  [ Otavio Salvador ]
  * Drop code that handles console handlig packages installation since it
    is going to be handled by kbd-chooser now.
  * Drop unused code that used to install localization-config but has
    not been used since Etch.

  [ Updated translations ]
  * Hindi (hi.po)
  * Italian (it.po) by Milo Casagrande

 -- Otavio Salvador <otavio@ossystems.com.br>  Thu, 23 Jul 2009 12:55:06 -0300

localechooser (2.12) unstable; urgency=low

  [ Christian Perrier ]
  * Add commented entry for Kirghiz in languagelist
  * Re-activate Estonian
  * Switch to console-setup for all languages previously
    using kbd

  [ Frans Pop ]
  * Drop support for the ppc64 architecture.

  [ Colin Watson ]
  * Explicitly use UTF-8 locales for Asturian and Breton.

  [ Updated translations ]
  * Asturian (ast.po) by Marcos Alvarez Costales
  * Bengali (bn.po) by Md. Rezwan Shahid
  * Estonian (et.po) by Mattias Põldaru
  * Italian (it.po) by Milo Casagrande
  * Slovak (sk.po) by Ivan Masár

 -- Christian Perrier <bubulle@debian.org>  Sat, 13 Jun 2009 12:06:09 +0200

localechooser (2.11) unstable; urgency=low

  * Add commented entry for Sinhala in languagelist
  * Activate Asturian

 -- Christian Perrier <bubulle@debian.org>  Sat, 07 Mar 2009 08:25:51 +0100

localechooser (2.10) unstable; urgency=low

  [ Christian Perrier ]
  * Add commented entry for Breton in languagelist
  * Add commented entry for Asturian in languagelist
  * Activate Kazakh

  [ Philip Hands ]
  * in localechooser.isinstallable check if we're in an auto-install,
    and if so that we have a preseed source.  If so, return false delaying
    the locale configuration, but if the preseed source is missing, touch:
      /var/run/preseed_unspecified_at_boot
    in order to flag that we're not really doing a proper auto-install

  [ Colin Watson ]
  * Remove "COUTRYNAME" typo; this variable isn't used any more anyway.
  * Merge from Ubuntu:
    - Install kbd rather than console-tools. Remove configuration file
      changes that: (a) modify a dpkg-handled conffile and so are policy
      violations; (b) are partly composed of workarounds for console-tools
      bugs not present in kbd; (c) are superseded by console-setup anyway.

 -- Christian Perrier <bubulle@debian.org>  Sat, 28 Feb 2009 11:01:16 +0100

localechooser (2.09) unstable; urgency=low

  * Fix incorrect use of no longer existing variable.

 -- Frans Pop <fjp@debian.org>  Sat, 03 Jan 2009 16:37:28 +0000

localechooser (2.08) unstable; urgency=low

  * Use isoquery instead of a python script to generate iso_3166.tab.

 -- Frans Pop <fjp@debian.org>  Mon, 22 Sep 2008 12:15:09 +0200

localechooser (2.07) unstable; urgency=low

  [ Christian Perrier ]
  * Added messages about backup languages for Northern Sami
    (localechooser.templates-se_NO). Thanks to Børre Gaup.
  * Activate Irish after it completed sublevels 1 and 2
  * Activate Serbian after it completed sublevels 1 and 2
  * Reactivate Welsh after it completed sublevels 1 and 2

  [ Frans Pop ]
  * Deactivate Estonian.

  [ Updated translations ]
  * Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
  * Bosnian (bs.po) by Armin Besirovic
  * Catalan (ca.po) by Jordi Mallach
  * Danish (da.po)
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Georgian (ka.po) by Aiet Kolkhi
  * Central Khmer (km.po) by KHOEM Sokhem
  * Kurdish (ku.po) by Amed Çeko Jiyan
  * Latvian (lv.po) by Aigars Mahinovs
  * Macedonian (mk.po) by Arangel Angov
  * Nepali (ne.po) by Shiva Prasad Pokharel
  * Serbian (sr.po) by Veselin Mijušković
  * Ukrainian (uk.po) by Borys Yanovych

 -- Otavio Salvador <otavio@debian.org>  Sun, 21 Sep 2008 22:14:40 -0300

localechooser (2.05) unstable; urgency=low

  [ Christian Perrier ]
  * Change commented entry for Serbian as part of the new language process
    The default country is "RS" (Serbia) and the default locale is sr_RS
    (cyrillic Serbian for Serbia)

  [ Samuel Thibault ]
  * Use display level 1 when framebuffer is not available and the terminal is
    not "serial" or "dumb".  This will enable localization on Braille devices.
    (Closes: #479208)

  [ Frans Pop ]
  * Fix build error because iso-codes no longer provides iso-3166.tab.
  * Various code cleanups and minor fixes/improvements.
  * Fix various regressions for languages that have a country code included
    in the language code. Basic reason is that the LANGUAGE variable now
    also includes the country specifier while before the switch to use
    Choices-C for language selection it did not.
  * Restructure preparations for asking the country shortlist question.
  * For languages where country selection would normally be skipped, allow
    country selection if the current country is different from the default
    (only relevant after going back or when re-running localechooser).
  * Update languagelist as Vietnamese does not have a .UTF-8 locale.
  * Include old changelogs from language/countrychooser in the source package
    and bring the copyright file in line with reality.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Greek, Modern (1453-) (el.po)
  * Esperanto (eo.po) by Felipe Castro
  * French (fr.po) by Christian Perrier
  * Hindi (hi.po) by Kumar Appaiah
  * Croatian (hr.po) by Josip Rodin
  * Kurdish (ku.po) by Erdal Ronahi
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)

 -- Frans Pop <fjp@debian.org>  Fri, 05 Sep 2008 21:47:32 +0200

localechooser (2.04) unstable; urgency=low

  [ Frans Pop ]
  * Avoid locale errors from perl in the post-base-installer script;
    also improve logging by and readability of the script.

  [ Piarres Beobide ]
  * Change translation of Basque from "Euskaraz" to "Euskara"

  [ Christian Perrier ]
  * Drop the now useless variable pointing to the iso_3166.tab file location
  * Drop the dependency on iso-codes-udeb
  * Drop useless versioned build dependency on iso-codes

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk
  * Esperanto (eo.po) by Serge Leblanc
  * Basque (eu.po) by Iñaki Larrañaga Murgoitio
  * Italian (it.po) by Milo Casagrande
  * Romanian (ro.po) by Eddy Petrișor
  * Slovenian (sl.po) by Matej Kovacic
  * Tagalog (tl.po) by Eric Pareja
  * Turkish (tr.po) by Mert Dirik
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke
  * Simplified Chinese (zh_CN.po) by Kov Chai

 -- Christian Perrier <bubulle@debian.org>  Sat, 12 Jul 2008 15:24:31 +0200

localechooser (2.03) unstable; urgency=low

  [ Frans Pop ]
  * Don't display additional locale selection if the default locale selection
    is not displayed because a locale has been preseeded. This is confusing,
    especially if the installer is started in expert mode from win32-loader.

  [ Colin Watson ]
  * Don't assume that /etc/lsb-release is valid shell (LP: #214861).

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Arabic (ar.po) by Ossama M. Khayat
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Jens Seidel
  * Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Iñaki Larrañaga Murgoitio
  * Hebrew (he.po) by Lior Kaplan
  * Hungarian (hu.po) by SZERVÁC Attila
  * Indonesian (id.po) by Arief S Fitrianto
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Kurdish (ku.po) by Erdal Ronahi
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Marathi (mr.po) by Sampada
  * Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
  * Dutch (nl.po) by Frans Pop
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Polish (pl.po) by Bartosz Fenski
  * Slovak (sk.po) by Ivan Masár
  * Tamil (ta.po) by Dr.T.Vasudevan
  * Vietnamese (vi.po) by Clytie Siddall

 -- Otavio Salvador <otavio@debian.org>  Thu, 08 May 2008 13:18:29 -0300

localechooser (2.02) unstable; urgency=low

  * Split full country list into separate dialogs for continent and country
    to improve usability (old list was too long).
    - Use Choices-C for all country selections (shortlist and per continent).
    - Default country is taken from languagelist, not from templates.
    - Sort continents and countries for all languages.
  * Improve coding style and readability in various build scripts.
  * Rename templates that still use a languagechooser or countrychooser prefix
    to localechooser/*. Should not affect other components or preseeding.
  * Avoid unnecessary untranslated values because of PO file conflicts.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * Finnish (fi.po) by Esko Arajärvi
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hebrew (he.po) by Lior Kaplan
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Dutch (nl.po) by Frans Pop
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Russian (ru.po) by Yuri Kozlov
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan

 -- Frans Pop <fjp@debian.org>  Sat, 19 Apr 2008 22:10:15 +0200

localechooser (2.01) unstable; urgency=low

  [ Frans Pop ]
  * Use cdebconf's new column alignment feature; requires: cdebconf (0.129).
  * Drop dependency on ancient version of di-utils.
  * Testing for $TERM_FRAMEBUFFER is more reliable than testing the debconf
    parameter as there are more factors that determine whether we have a
    framebuffer or not. Requires rootskel (>= 1.61).
  * When not in UTF-8 mode, make sure that for the language list the Choices
    values are displayed and not the Choices-C values.
  * Remove Petter Reinholdtsen as Uploader with many thanks for his past
    contributions.

  [ Christian Perrier ]
  * Activate Marathi in languagelist.
  * Add MF (Saint-Martin) and BL (Saint-Barthélémy) to the Caribbean region.

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Arabic (ar.po) by Ossama M. Khayat
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Jens Seidel
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * Finnish (fi.po) by Esko Arajärvi
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Gujarati (gu.po) by Kartik Mistry
  * Japanese (ja.po) by Kenshi Muto
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Marathi (mr.po)
  * Dutch (nl.po) by Frans Pop
  * Panjabi (pa.po) by Amanpreet Singh Brar
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrișor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Swedish (sv.po) by Daniel Nylander
  * Vietnamese (vi.po) by Clytie Siddall
  * Simplified Chinese (zh_CN.po) by Ming Hua

 -- Frans Pop <fjp@debian.org>  Sat, 12 Apr 2008 13:46:57 +0200

localechooser (2.00) unstable; urgency=low

  [ Colin Watson ]
  * Remove duplication of Hindi in languagelist. Closes: #471424.

  [ Frans Pop ]
  * Remove duplication of Icelandic in languagelist.l10n.
  * Make it possible to back up to earlier dialogs by bringing the main
    localechooser code under a state engine.
  * Display a message when changing the language is no longer possible because
    translations have been deleted. Left disabled for now because of #470258.
  * Merge languagelist.l10n into languagelist.
  * Identify languages by language code instead of language name. This
    improves support for languages with variants in different countries.
  * Remove redundant check for serial console: variables have already been set
    when the installer was initialized.
  * Build the list of languages for the current display level at runtime
    instead of having separate templates for them. This does make starting
    localechooser slightly slower, but saves memory. Closes: #365307.
  * Ensure we always set debconf/language and call gtk-set-font at the same
    time. Thanks to Jérémy Bobbio for his help tracing this. Closes: #470481.
  * Patch by Matthias Klose stolen from Ubuntu (closes: #468635):
    - iso3166tab.py: Include ErrorPrinter and DefaultHandler from obsolete
      saxutils.py
    - drop build dependency on python-xml
  * Various code cleanups.
  * Bump version to 2.00.

  [ Updated translations ]
  * Amharic (am.po) by Tegegne Tefera
  * Arabic (ar.po) by Ossama M. Khayat
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * Esperanto (eo.po) by Serge Leblanc
  * Basque (eu.po) by Piarres Beobide
  * Finnish (fi.po) by Esko Arajärvi
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Indonesian (id.po) by Arief S Fitrianto
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Dutch (nl.po) by Frans Pop
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan

 -- Frans Pop <fjp@debian.org>  Wed, 19 Mar 2008 20:53:35 +0100

localechooser (1.46) unstable; urgency=low

  [ Updated translations ]
  * Finnish (fi.po) by Esko Arajärvi
  * Hindi (hi.po) by Kumar Appaiah
  * Indonesian (id.po) by Arief S Fitrianto
  * Central Khmer (km.po) by Khoem Sokhem
  * Latvian (lv.po) by Viesturs Zarins
  * Nepali (ne.po) by Shyam Krishna Bal
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Slovenian (sl.po) by Matej Kovacic
  * Turkish (tr.po) by Recai Oktaş
  * Ukrainian (uk.po)
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke

 -- Otavio Salvador <otavio@debian.org>  Fri, 15 Feb 2008 08:20:51 -0200

localechooser (1.45) unstable; urgency=low

  * Add new ISO-3166 codes (BL and MF) to the region map
  * Recompile wrt new iso-codes that includes the two new codes

 -- Christian Perrier <bubulle@debian.org>  Sun, 20 Jan 2008 11:06:33 +0100

localechooser (1.44) unstable; urgency=low

  * Activate Amharic
  * Add localized name for Kashmiri.
  * Add (commented) entry for Kashmiri in the language list.

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Kurdish (ku.po) by Erdal Ronahi
  * Portuguese (pt.po) by Miguel Figueiredo

 -- Christian Perrier <bubulle@debian.org>  Tue, 08 Jan 2008 21:58:29 +0100

localechooser (1.43) unstable; urgency=low

  * Rebuilt with new locales package to include de_LI locale. Closes: #453614

  [ Updated translations ]
  * Dzongkha (dz.po) by Jurmey Rabgay
  * Malayalam (ml.po) by Praveen A
  * Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
  * Panjabi (pa.po) by A S Alam

 -- Joey Hess <joeyh@debian.org>  Wed, 19 Dec 2007 16:07:12 -0500

localechooser (1.42) unstable; urgency=low

  * Since /etc/default/locale is now a conffile provided by locales,
    sed changes into it rather than overwriting. (Fall back to writing to the
    file if necessary.)

  [ Updated translations ]
  * Belarusian (be.po) by Hleb Rubanau
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bengali (bn.po) by Jamil Ahmed
  * Catalan (ca.po) by Jordi Mallach
  * Czech (cs.po) by Miroslav Kure
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Galician (gl.po) by Jacobo Tarrio
  * Hebrew (he.po) by Lior Kaplan
  * Hungarian (hu.po) by SZERVÁC Attila
  * Italian (it.po) by Stefano Canepa
  * Korean (ko.po) by Sunjae Park
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Nepali (ne.po) by Nabin Gautam
  * Dutch (nl.po) by Frans Pop
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petri?or
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Peter Mann
  * Albanian (sq.po) by Elian Myftiu
  * Tamil (ta.po) by Dr.T.Vasudevan
  * Vietnamese (vi.po) by Clytie Siddall

 -- Christian Perrier <bubulle@debian.org>  Thu, 01 Nov 2007 08:54:49 +0100

localechooser (1.41) unstable; urgency=low

  [ Frans Pop ]
  * Change continents prefix to correct characters in Vietnamese translation.
    Closes: #432339.

  [ Christian Perrier ]
  * Set the Bulgarian, Esperanto, Georgian and (commented) Kazakh
    to use UTF-8
  * Unconditionnally set debian-installer/charmap to UTF-8 for
    console-setup purposes.
  * TF region moved to Indian Ocean. Remaining of #426890
  * Create a region named "Atlantic Ocean". Put Bouvet Island, Falkland
    Islands, South Georgia and South Sandwich and Saint-Helena in there.
    Iceland remains in Europe and Greenland as well.
  * Change the default kbd encoding for Bulgarian to "utf8"
  * Change the console settings for (commented) Kazakh to
    "CyrAsia-Terminus16(utf8)"

  [ Jérémy Bobbio ]
  * Prevent grep to exit with an error when country2code is called with a
    region as argument in localechooser.

 -- Christian Perrier <bubulle@debian.org>  Sat, 21 Jul 2007 08:38:53 +0200

localechooser (1.40) unstable; urgency=low

  [ Christian Perrier ]
  * Add the new Serbia and Montenegro entries to Europe.
    Remove the former entry for "Serbia and Montenegro".
    Thanks to Piotr Engelking for the patch. Closes: #426821
  * Correct misplaced countries.
    Thanks to Piotr Engelking for the patch. Closes: #426890

  [ Colin Watson ]
  * Rewrite some inefficient if blocks that can be done in a single
    assignment instead.

  [ Frans Pop ]
  * Set better defaults when localechooser is run again after it has been
    run preseeded the first time.
  * Select language selection template before checking preseeding. This
    allows us to preseed the correct template for the environment we're
    working in. It also improves behavior when preseeding without setting
    the 'seen' flag.
  * Fix bug in code2country function.
  * If for country selection the current (preseeded) value is not in the
    shortlist, show the full list instead.

 -- Frans Pop <fjp@debian.org>  Fri, 06 Jul 2007 00:19:06 +0200

localechooser (1.39) unstable; urgency=low

  * Add localized name for Armenian.
  * Add (commented) entry for Armenian in the language list.
  * No longer write locale settings to /etc/environment after #389466 was
    fixed.

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Basque (eu.po) by Piarres Beobide
  * Romanian (ro.po) by Eddy Petri?or

 -- Christian Perrier <bubulle@debian.org>  Mon, 21 May 2007 20:55:03 +0200

localechooser (1.38) unstable; urgency=low

  * Multiply menu-item-numbers by 100

  [ Updated translations ]
  * Esperanto (eo.po) by Serge Leblanc
  * Tamil (ta.po) by Dr.T.Vasudevan

 -- Joey Hess <joeyh@debian.org>  Tue, 10 Apr 2007 14:41:33 -0400

localechooser (1.37) unstable; urgency=low

  [ Christian Perrier ]
  * Fix default for shortlists from locale preseeding. Closes: #411082.
  * Change the localized name for Finnish to "Suomi". Closes: #410354

  [ Updated translations ]
  * Hebrew (he.po) by Lior Kaplan
  * Swedish (sv.po) by Daniel Nylander

 -- Frans Pop <fjp@debian.org>  Wed, 21 Feb 2007 14:19:36 +0100

localechooser (1.36) unstable; urgency=low

  * Parameter for hands-off installs has been changed to auto-install/enable
    for consistency with rescue.

 -- Frans Pop <fjp@debian.org>  Fri,  2 Feb 2007 17:07:14 +0100

localechooser (1.35) unstable; urgency=low

  [ Christian Perrier ]
  * Change localized name for Belarusian on request of translators.
  * Disable the installation of localization-config as it is not ready for
    production use.

  [ Updated translations ]
  * Italian (it.po) by Stefano Canepa
  * Romanian (ro.po) by Eddy Petri?or

 -- Frans Pop <fjp@debian.org>  Wed, 31 Jan 2007 11:44:21 +0100

localechooser (1.34) unstable; urgency=low

  * Add country names in English to the shortlists to ensure we don't display
    only country codes if translations are unavailable. English country names
    go in the Choices field; the Choices-C field is used for the country
    codes. Also put the default for the shortlists in a general Default field,
    instead of setting a language-specific default. Closes: #396109.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Danish (da.po) by Claus Hindsgaul
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Galician (gl.po) by Jacobo Tarrio
  * Kurdish (ku.po) by Amed Çeko Jiyan
  * Latvian (lv.po) by Aigars Mahinovs
  * Panjabi (pa.po) by A S Alam
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Portuguese (pt.po) by Miguel Figueiredo
  * Slovenian (sl.po) by Matej Kovačič
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Turkish (tr.po) by Recai Oktaş

 -- Frans Pop <fjp@debian.org>  Wed, 24 Jan 2007 02:17:05 +0100

localechooser (1.33) unstable; urgency=low

  * Switch default font used in graphical installer based on selected
    language.

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk

 -- Frans Pop <fjp@debian.org>  Mon, 11 Dec 2006 23:40:46 +0100

localechooser (1.32) unstable; urgency=low

  [ Colin Watson ]
  * If there's no default country for the selected language, leave the
    default for countrychooser/country-name alone.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Bulgarian (bg.po) by Damyan Ivanov
  * Kurdish (ku.po) by rizoye-xerzi
  * Latvian (lv.po) by Aigars Mahinovs
  * Malayalam (ml.po) by Praveen A
  * Punjabi (pa.po) by A S Alam

 -- Christian Perrier <bubulle@debian.org>  Tue,  5 Dec 2006 18:47:54 +0100

localechooser (1.31) unstable; urgency=low

  [ Christian Perrier ]
  * Re-activate Georgian after it reached 100% again
  * Activate Malayalam

  [ Colin Watson ]
  * Fix check for selected language when trying to display "no translations
    available" template.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Malayalam (ml.po) by Praveen A
  * Punjabi (pa.po) by A S Alam
  * Slovenian (sl.po) by Matej Kovacic

 -- Christian Perrier <bubulle@debian.org>  Thu, 16 Nov 2006 08:12:21 +0100

localechooser (1.30) unstable; urgency=low

  * Added localized name for Amharic
  * Re-activate Belarusian after it reached 100% again
  [ Updated translations ]
    * Bulgarian (bg.po) by Damyan Ivaniv

 -- Christian Perrier <bubulle@debian.org>  Wed, 15 Nov 2006 06:39:26 +0100

localechooser (1.29) unstable; urgency=low

  * Re-activate Northern Sami to keep that option for Debian-Edu

 -- Christian Perrier <bubulle@debian.org>  Sun, 29 Oct 2006 18:21:12 +0100

localechooser (1.28) unstable; urgency=low

  [ Christian Perrier ]
  * Add Urdu to the localized language list (commented)
  * Write /etc/environment again to circumvent #389466
    This will reopen #379052
  * Languages (hopefully temporarily) disabled because not enough complete
    - Welsh
    - Kazakh
    - Northern Sami
    - Malagasy
    - Persian
    - Icelandic
    - Georgian

  [ Frans Pop ]
  * Add Lintian override for standards-version.
  * Add myself to uploaders.

  [ Updated translations ]
  * Belarusian (be.po) by Andrei Darashenka
  * Dzongkha (dz.po) by Jurmey Rabgay
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Hindi (hi.po) by Nishant Sharma
  * Kurdish (ku.po) by Erdal Ronahi
  * Nepali (ne.po) by Shiva Prasad Pokharel
  * Romanian (ro.po) by Eddy Petri?or
  * Tamil (ta.po) by Damodharan Rajalingam
  * Vietnamese (vi.po) by Clytie Siddall

 -- Frans Pop <fjp@debian.org>  Tue, 24 Oct 2006 15:01:11 +0200

localechooser (1.27) unstable; urgency=low

  [ Frans Pop ]
  * Don't display "no translations available" template for floppy based
    installs if selected language is English.

  [ Christian Perrier ]
  * Desactivate Irish (too incomplete translation now)

  [ Updated translations ]
  * Dzongkha (dz.po) by Jurmey Rabgay
  * Tamil (ta.po) by Damodharan Rajalingam

 -- Christian Perrier <bubulle@debian.org>  Fri, 13 Oct 2006 19:31:28 +0200

localechooser (1.26) unstable; urgency=low

  * Desactivate Xhosa (too incomplete translation now)
  * Desactivate Belarusian (too incomplete translation now)

  [ Updated translations ]
  * Esperanto (eo.po) by Serge Leblanc
  * Estonian (et.po) by Siim Põder
  * Basque (eu.po) by Piarres Beobide
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Nishant Sharma
  * Croatian (hr.po) by Josip Rodin
  * Kurdish (ku.po) by Erdal Ronahi
  * Latvian (lv.po) by Aigars Mahinovs

 -- Christian Perrier <bubulle@debian.org>  Sat,  7 Oct 2006 22:15:49 +0200

localechooser (1.25) unstable; urgency=low

  * Warn users about temporary use of English during floppy-based installs
    Closes: #269972, #286018

  [ Updated translations ]
    * Basque (eu.po) by Piarres Beobide
    * Indonesian (id.po) by Arief S Fitrianto
    * Vietnamese (vi.po) by Clytie Siddall

 -- Christian Perrier <bubulle@debian.org>  Thu,  7 Sep 2006 20:21:52 +0200

localechooser (1.24) unstable; urgency=low

  * Do not configure console-cyrillic anymor efor languages using it
    Closes: #384323

 -- Christian Perrier <bubulle@debian.org>  Fri, 1 Sep 2006 07:27:41 +0200

localechooser (1.23) unstable; urgency=low

  [ Frans Pop ]
  * Stop writing the locale to /etc/environment. Closes: #379052.

  [ Christian Perrier ]
  * Add Telugu to the localized language list (commented)
  * Activate Gujarati in the language list

  [ Philip Hands ]
  * add isinstallable: to delay configuration if auto-install/enabled=true

 -- Christian Perrier <bubulle@debian.org>  Sun, 27 Aug 2006 11:39:07 +0200

localechooser (1.22) unstable; urgency=low

  [ Christian Perrier ]
  * Fix the Default field for countrychooser/country-name so that it uses
    brackets to be different from "United States" we have elsewhere as
    translatable string. Fixes the default choice for the long country list.

 -- Frans Pop <fjp@debian.org>  Sun, 30 Jul 2006 21:29:35 +0200

localechooser (1.21) unstable; urgency=low

  [ Colin Watson ]
  * Change ACM for Irish to UTF-8 to match its default locale encoding.
  * Add Guernsey, the Isle of Man, and Jersey to regionmap.
  * Fix mk_shortlist_templates to avoid literal "EN_DESCR" showing up in
    templates files when countrychooser/shortlist is untranslated in the
    associated language.
  * Fix mktemplates.country to avoid bashisms and reliance on multiple
    counterintuitive backslash expansions.
  * Unregister shortlist templates before registering new ones, to ensure
    that the question gets effectively reset. The debconf specification does
    not say what happens when you re-register an existing template, and
    cdebconf and debconf have different (reasonable) interpretations;
    unregistration forces the old question to go away.
  * Fix check-data target.
  * Fix incorrect field ordering in Finnish languagelist line.

  [ Christian Perrier ]
  * Safe calls to validlocale and gen-locale. Closes: #379502

 -- Christian Perrier <bubulle@debian.org>  Mon, 24 Jul 2006 17:55:34 +0200

localechooser (1.20) unstable; urgency=low

  [ Christian Perrier ]
  * Add localized name for Malay
  * Add (commented) entry for Malay
  * Add localized name for Marathi
  * Add (commented) entry for Marathi
  * Switch Russian console to UTF-8 on the installed system
    Closes: #376414
  * Removed Standards-Version in control. Not meaningful for udebs

  [ Colin Watson ]
  * Put debhelper in Build-Depends rather than in Build-Depends-Indep.
  * Remove some dead code in locale2langname.
  * Never select C when preseeding debian-installer/locale=en_*.
  * Fix handling of debian-installer/locale preseeding to cope with
    languages that only have ll_CC in shortlists.
  * Fix bashism in mkshort leading to incorrect contents of shortlist
    templates when /bin/sh is dash.

 -- Christian Perrier <bubulle@debian.org>  Sat,  8 Jul 2006 08:12:49 +0200

localechooser (1.19) unstable; urgency=low

  * Rename prebaseconfig progress template.

 -- Joey Hess <joeyh@debian.org>  Wed,  7 Jun 2006 22:04:00 -0400

localechooser (1.18) unstable; urgency=low

  * Rename the prebaseconfig script to "finish-install" and install
    it to /usr/lib/finish-install.d

  [ Updated translations ]
  * Lithuanian (lt.po) by Kestutis Biliūnas

 -- Christian Perrier <bubulle@debian.org>  Mon,  5 Jun 2006 15:01:16 +0700

localechooser (1.17) unstable; urgency=low

  * Activate Georgian in the language list

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Catalan (ca.po) by Jordi Mallach
  * Basque (eu.po) by Piarres Beobide
  * Georgian (ka.po) by Aiet Kolkhi
  * Khmer (km.po) by Khoem Sokhem
  * Northern Sami (se.po) by Børre Gaup

 -- Christian Perrier <bubulle@debian.org>  Sun, 28 May 2006 16:12:44 +0200

localechooser (1.16) unstable; urgency=low

  * Activate Nepali in the language list

 -- Christian Perrier <bubulle@debian.org>  Thu, 18 May 2006 17:16:51 -0500

localechooser (1.15) unstable; urgency=low

  [ Christian Perrier ]
  * Add Valencian-Catalan to the languagelist (commented). Closes: #362502
  * Use critical priority for language and country questions. Closes: #367080

  [ Joey Hess ]
  * Remove some unnecessary logging of success and debug logging.
  * Discard locale-gen stdout.

 -- Christian Perrier <bubulle@debian.org>  Mon, 15 May 2006 07:45:03 -0500

localechooser (1.14) unstable; urgency=low

  [ Christian Perrier ]
  * Use new "flag" comment feature of po-debconf to avoid "${SHORTLIST}" to
    be included in translation files

  [ Frans Pop ]
  * Old-style options for head/tail are no longer supported by new busybox.
  * Write locale to /etc/default/locale in /target instead of d-i environment.

 -- Christian Perrier <bubulle@debian.org>  Fri,  5 May 2006 15:38:51 +0200

localechooser (1.13) unstable; urgency=low

  [ Joey Hess ]
  * Fix inverted entry for Dzongkha in languagelist.l10n.
  * debian-installer/fallbacklocale question is internal use only, so
    don't mark translatable.
  * Remove unused debian-installer/invalidlocale template.

 -- Christian Perrier <bubulle@debian.org>  Thu, 27 Apr 2006 20:45:15 +0200

localechooser (1.12) unstable; urgency=low

  [ Christian Perrier ]
  * Activate Thai as a supported language

  [ Updated translations ]
    * Thai (th.po) by Theppitak Karoonboonyanan

 -- Christian Perrier <bubulle@debian.org>  Mon, 17 Apr 2006 20:09:56 +0200

localechooser (1.11) unstable; urgency=low

  * Change the searched field in local2langname to have locale
    preseeding work again. Closes: #362427

 -- Christian Perrier <bubulle@debian.org>  Thu, 13 Apr 2006 13:53:41 +0200

localechooser (1.10) unstable; urgency=low

  * Set French as backup for Wolof on translator's request
  * Activate Dzongkha as a supported language

 -- Christian Perrier <bubulle@debian.org>  Tue, 11 Apr 2006 13:59:49 +0200

localechooser (1.09) unstable; urgency=low

  [ Christian Perrier ]
  * Add Thai to the list of languages (commented)
  * Write locale data to both /etc/environment and /etc/default/locale
    to cope with changes in locales
  * No more install belocs-locales-* for Kurdish and Sanskrit as these
    locales are now in locales

  [ Updated translations ]
  * Added Northern Sami by Børre Gaup

 -- Christian Perrier <bubulle@debian.org>  Fri,  7 Apr 2006 09:07:19 +0200

localechooser (1.08) unstable; urgency=low

  * Fix mkshort to better fix languages with more than one territory
    supported and avoid listing Czech in the list
  * Get rid of the languagelist third field which was a weird way to
    decide whether a given language should have a short list of
    countries to display. This simplifies the languagelist file
  * Use a more natural order for fields in the languagelist file

 -- Christian Perrier <bubulle@debian.org>  Sat,  1 Apr 2006 16:35:24 +0200

localechooser (1.07) unstable; urgency=low

  * Only use LANGUAGELIST list of languages when really needed, ie
    when a language needs and benefits from something else than English.
    Should avoid reports like #356997.
  * code2country() will now return US in case the iso_3166.tab file
    isn't available on the system
  * Allow country selection for Catalan. Closes: #359128
  * Allow country selection for Greek

 -- Christian Perrier <bubulle@debian.org>  Tue, 28 Mar 2006 14:33:10 +0200

localechooser (1.06) unstable; urgency=low

  * Add "../countrylist" in debian/po/POTFILES.in to make the region
    names translatable again. Old translations from countrychooser
    are grabbed back from it in the master files
  * Remove the hacked intltool-merge and use new "flag:partial"
    functionnality of po-debconf to allow partially translated
    country lists
  * Remove comments inside the default value for country name and code
    Fix for a possible po2debconf bug but this is a good occasion to
    remove this cruft anyway and use normal comments
    Closes: #358097
  * Activate Irish in the languagelist
  * Add Dzongkha to the list of languages (commented)

  [ Updated translations ]
  * Danish (da.po) by Claus Hindsgaul
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * French (fr.po) by Christian Perrier
  * Irish (ga.po) by Kevin Patrick Scannell
  * Galician (gl.po) by Jacobo Tarrio
  * Japanese (ja.po) by Kenshi Muto
  * Khmer (km.po) by hok kakada
  * Macedonian (mk.po) by Georgi Stanojevski
  * Dutch (nl.po) by Bart Cornelis
  * Polish (pl.po) by Bartosz Fenski
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Portuguese (pt.po) by Miguel Figueiredo
  * Swedish (sv.po) by Daniel Nylander
  * Tagalog (tl.po) by Eric Pareja
  * Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Christian Perrier <bubulle@debian.org>  Sun, 26 Mar 2006 22:44:39 +0200

localechooser (1.05) unstable; urgency=low

  * Punjabi is now referenced as "pa" so adapt its line in languagelist

 -- Christian Perrier <bubulle@debian.org>  Sat, 18 Mar 2006 18:50:14 +0100

localechooser (1.04) unstable; urgency=low

  [ Colin Watson ]
  * locale2langname: If there are multiple matches for a given language
    code, try matching the country as well; improves handling of preseeding
    for Portuguese and Chinese.
  * post-base-installer: Don't clobber existing contents of
    /etc/environment, in case some package in the base system starts putting
    things there.

  [ Christian Perrier ]
  * Add localized name for Lao
  * Add Lao to the list of languages (commented)
  * Set locale environment to POSIX for languages that cannot be displayed
    at the Linux console. Languages categories are now 1 to 4.
    Closes: #243404, #263575
  * Add localized name for Dzongkha
  * Add Dzongkha to the list of languages (commented)
  * All languages now switched to UTF-8 (both Chinese, Russian,
    commented Irish)
  * Activate Khmer and Tamil

  [ Frans Pop ]
  * Use iso3166tab.py to generate iso_3166.tab from iso_3166.xml instead of
    using obsoleted .tab file from iso-codes package (closes: #302111).
  * get-iso-codes: remove redundant check if iso-codes package is installed;
    we do build-depend on it after all.
  * Add template to set info box during babelbox demo runs. Does not really
    belong in localechooser, but this is the best place for it.

 -- Christian Perrier <bubulle@debian.org>  Sat, 11 Mar 2006 17:18:05 +0100

localechooser (1.03) unstable; urgency=low

  [ Changwoo Ryu ]
  * Default to UTF-8 for Korean.
  * en_US is prefered over en_GB for Korean.

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
  * Basque (eu.po) by Piarres Beobide
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Malagasy (mg.po) by Jaonary Rabarisoa
  * Bokmål, Norwegian (nb.po) by Bjørn Steensrud
  * Punjabi (Gurmukhi) (pa_IN.po) by Amanpreet Singh Alam
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Romanian (ro.po) by Eddy Petrişor
  * Slovenian (sl.po) by Jure Cuhalev
  * Albanian (sq.po) by Elian Myftiu
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov
  * Vietnamese (vi.po) by Clytie Siddall

 -- Christian Perrier <bubulle@debian.org>  Tue, 24 Jan 2006 22:02:30 +0100

localechooser (1.02) unstable; urgency=low

  * Change the default locale for Esperanto to eo as planned
    by the locales maintainers
  * Change the name of console-terminus fonts for languages using them
  * Change prebaseconfig to install console-terminus when the consolefont
    name contains "Terminus"

 -- Christian Perrier <bubulle@debian.org>  Thu, 12 Jan 2006 20:26:04 +0100

localechooser (1.01) unstable; urgency=low

  [ Christian Perrier ]
  * Correct the entry for Esperanto

  [ Updated translations ]
  * Bulgarian (bg.po) by Ognyan Kulev
  * Indonesian (id.po) by Parlin Imanuel Toh
  * Slovak (sk.po) by Peter Mann
  * Turkish (tr.po) by Recai Oktaş
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Christian Perrier <bubulle@debian.org>  Wed, 11 Jan 2006 06:44:22 +0100

localechooser (1.0) unstable; urgency=low

  [ Updated translations ]
  * German (de.po) by Jens Seidel
  * Finnish (fi.po) by Tapio Lehtonen
  * Italian (it.po) by Giuseppe Sacco
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Sunjae park
  * Polish (pl.po) by Bartosz Fenski
  * Simplified Chinese (zh_CN.po) by Ming Hua

  [ Christian Perrier ]
  * Bump version to 1.0 as localechooser is fairly stable now
  * Re-add some code to install the bterm-unifont package
    which brings a complete unifont font for later steps of d-i
    Closes: #346339

 -- Christian Perrier <bubulle@debian.org>  Sat,  7 Jan 2006 07:42:33 +0100

localechooser (0.28) unstable; urgency=low

  [ Frans Pop ]
  * Move code to check preseeding to separate function.
  * During preseeding checks, make sure we don't match on partial matches.
  * Only do preseeding checks the first time localechooser is being run.
    Closes: #343495
  * Make sure locale2langname only returns one language name; move Portuguese
    up in the languagelist so it is prefered over Brazillian.
  * Unset seen flag for debian-installer/locale if it was preseeded with an
    invalid locale.

  [ Joey Hess ]
  * Remove unused pkginstall function.
  * Don't apt-install iso-codes, base-config apt-setup used this, but it has
    been replaced.
  * Stop installing jfbterm, unifont, which were only used by base-config,
    which is being removed.
  * Stop installing bterm-unifont, not even used by base-config.
  * Removed two minor base-config references, left one.

  [ Christian Perrier ]
  * Add localized name and (commented) languagelist entry for Nepali
  * Generate the installed languagelist file from the original one
    by removing comments. This saves 1.5k
  * Move the languagelist file to /usr/share/localechooser. Let's make
    things clean even if we don't really care.

  [ Colin Watson ]
  * Add a comment to the top of languagelist explaining what the fields
    mean.
  * Drop obsolete comment about English and Swedish @euro locale modifiers.
  * Drop unnecessary "in Debian" from a couple of templates, to reduce
    branding problems for derivatives.

 -- Christian Perrier <bubulle@debian.org>  Wed,  4 Jan 2006 10:24:37 +0100

localechooser (0.27) unstable; urgency=low

  * Kazakh is now supported

 -- Christian Perrier <bubulle@debian.org>  Fri, 23 Dec 2005 18:32:08 +0100

localechooser (0.26) unstable; urgency=low

  [ Christian Perrier ]
  * Add Khmer languagelist entry (commented)
  * Move language-dependent packages installation to prebaseconfig.
    Closes: #343497
  * Install console-terminus for languages requiring it in languagielist
    rather than hardcoding the list of languages in the prebaseconfig script.
  * Remove the current locale from the list of locales proposed as
    additionnal locales so that users can't uncheck it.
    Closes: #316003

  [ Colin Watson ]
  * Move locale generation to a post-base-installer hook so that later udebs
    such as pkgsel that chroot into /target have a working locale.
  * Install locales (or belocs-locales-*) if localechooser/supported-locales
    is set, as well as if the primary locale is not C.

  [ Frans Pop ]
  * Also move installation of localization-config to prebaseconfig script.

 -- Christian Perrier <bubulle@debian.org>  Wed, 21 Dec 2005 22:54:22 +0100

localechooser (0.25) unstable; urgency=low

  [ Christian Perrier ]
  * Remove Russian as alternative language for Belarusian
  * Change the definition of "C". We now set the country.
  * Console font changes:
    - Bosnian: replace lat2-sun16 by ter-v16f
    - Georgian: use the ka8x16thin font for the console
    - Turkish: replace ter-916f by ter-v16f
  * Add Khmer localized language name

  [ Frans Pop ]
  * Save some space by using tab to indent.
  * Set language for d-i to 'en' when locale C is selected to make sure all
    questions are "translated" to English instead of showing codes.
  * Don't prematurely exit localechooser script when locale C is selected.
  * Don't ask for additional locales when locale C is selected as we are not
    installing the locales package.
  * Improvements in script consistency and comments.

 -- Christian Perrier <bubulle@debian.org>  Fri, 16 Dec 2005 17:00:15 +0100

localechooser (0.24) unstable; urgency=low

  * Allow choosing a country even when the locale is preset or
    preseeded to "C". Closes: #315925

 -- Christian Perrier <bubulle@debian.org>  Mon,  5 Dec 2005 22:40:24 +0100

localechooser (0.23) unstable; urgency=low

  [ Frans Pop ]
  * List the "C" locale at the top of the languagelist. Closes: #315924.

  [ Christian Perrier ]
  * Better setup of localization for installs where localechooser is not
    run at the beginning of the install process (e.g. s390).
    Closes: #281341, #281538
  * Set the console font for all consoles. Closes: #293635
  * Switch all languages but a few CJK and cyrillic ones to default UTF-8
    Consistent use of .UTF-8 modifiers (only appear in 4th fields of
    languagelist and not 3rd field where they are useless)

 -- Christian Perrier <bubulle@debian.org>  Sun, 20 Nov 2005 13:08:50 +0100

localechooser (0.22) unstable; urgency=low

  * Load jfbterm and unifont for Wolof and Vietnamese which will need it
    in 2nd stage

 -- Christian Perrier <bubulle@debian.org>  Tue,  8 Nov 2005 20:45:50 +0100

localechooser (0.21) unstable; urgency=low

  [ Miroslav Kure ]
  * Switch Czech and Slovak to use UTF-8 by default

  [ Christian Perrier ]
  * Change the console entry for Belarusian to use console-cyrillic
    with proper settings. Closes: #337986

 -- Christian Perrier <bubulle@debian.org>  Tue,  8 Nov 2005 20:33:26 +0100

localechooser (0.20) unstable; urgency=low

  * Rewrite the language selection screen to make it less
    debconf interface-ism and use better English
  * Activate support for Bengali

 -- Christian Perrier <bubulle@debian.org>  Tue, 18 Oct 2005 08:38:17 +0200

localechooser (0.19) unstable; urgency=low

  [ Christian Perrier ]
  * Add Sanskrit to languagelist (commented)
    Use belocs-locales-data for it until it is added to locales
  * Log the template used to input for languages
  * Remove a useless debug statement in locale2langname()

  [ Joey Hess ]
  * Consistent indentation.

  [ Frans Pop ]
  * Use correct environment variable (DEBIAN_FRONTEND) to determine which
    frontend is running and log this.

 -- Christian Perrier <bubulle@debian.org>  Wed, 12 Oct 2005 09:45:11 +0200

localechooser (0.18) unstable; urgency=low

  [ Christian Perrier ]
  * languagelist: replace a wrongly place semi-colon in the line
                  for Italian. Closes: #255219
  * languagelist: replace *two* wrongly place semi-colons in the line
                  for Kurdish
  * Add Gujarati to languagelist (commented)
  * Add Malayalam to languagelist (commented)
  * Add Gujarati to languagelist (commented)

  [ Joey Hess ]
  * Converted part of prebaseconfig to use log-output. Two other parts
    remain unconverted.

  [ Colin Watson ]
  * Use log-output --pass-stdout to convert remaining parts of prebaseconfig
    to syslogging.

  * Updated translations:
    - Dutch (nl.po) by Bart Cornelis

 -- Joey Hess <joeyh@debian.org>  Thu, 22 Sep 2005 09:25:21 +0200

localechooser (0.17) unstable; urgency=low

  * Add Malayalam to languagelist (commented)
  * languagemap: always set LOCALE, FALLBACKLOCALE, LANGUAGE, COUNTRY
                 even when they were already set before calling the script
    Closes: #315929
  * languagelist: correct 3rd field for Persian which only has one
    supported country. Closes: #278009
  * Updated translations:
    - Basque (eu.po) by Piarres Beobide

 -- Christian Perrier <bubulle@debian.org>  Sat, 17 Sep 2005 12:10:20 +0200

localechooser (0.16) unstable; urgency=low

  * Implement four different lists of languages depending on
    the interface
  * Change the kbd= entry for French after we changed to UTF-8 default
    after recommendation by Denis Barbier
  * Add Tamil to languagelist (commented)
  * Add Icelandic to languagelist (commented)

 -- Christian Perrier <bubulle@debian.org>  Wed, 14 Sep 2005 22:26:16 +0200

localechooser (0.15) unstable; urgency=low

  * Use belocs-locales-* as an alternative to locales
    for languages not (yet) supported in locales:
    Kurdish
  * French now defaults to UTF-8 after reaching some consensus
    the French devel lists

 -- Christian Perrier <bubulle@debian.org>  Mon,  5 Sep 2005 11:35:43 +0200

localechooser (0.14) unstable; urgency=low

  [ Christian Perrier ]
  * Update languagelist and sync it with PROSPECTIVE. Document why
    Sami is kept even if the translation is nearly 0%. Serbian commented
    as we don't have any Serbian translation yet.
  * Remove extra character for Wolof
  * Use correct name of the script for Punjabi
  * Add Bengali to languagelist (commented)
  * Add Kurdish to languagelist
    Install console-terminus for Kurdish
    Most console settings copied from Turkish entries
  * Add Kannada to languagelist (commented)
  * Add Georgian to languagelist (commented)

  [ Kenshi Muto ]
  * Default to UTF-8 for Japanese.

  [ Joey Hess ]
  * Set Menu-Item-Number to 10 (9 is reserved).
  * Remove duplicate debian-installer/country from templates.

  [ Colin Watson ]
  * Reduce use of cut and sed a bit.
  * Separate choices by comma-space rather than just comma, to be friendlier
    to Perl debconf.
  * Fix quoting problem when building the list of possible locales.
  * List pt_PT ahead of pt in LANGUAGE for Portuguese (Portugal)
    installations, otherwise pt_BR translations get displayed in preference
    if the pt translations are shipped as pt_PT.

  [ Joey Hess ]
  * Stop writing debootstrap_settings, dropping woody installation support.

 -- Christian Perrier <bubulle@debian.org>  Sat,  3 Sep 2005 07:49:21 +0200

localechooser (0.13) unstable; urgency=low

  [ Frans Pop ]
  * Add default full country name for Dutch
  * Fix changed named of target in Makefile
  * Fix error in countrylist script when adding countries to region "other"
  [ Christian Perrier ]
  * Default to UTF-8 for Hebrew. Closes: #317800
  [ Colin Watson ]
  * Add Xhosa to the list of languages.

 -- Christian Perrier <bubulle@debian.org>  Fri, 15 Jul 2005 23:16:29 +0200

localechooser (0.12) unstable; urgency=low

  * Rebuilt to get correct defaults for all languages
  * Added translations:
    - Vietnamese (vi.po) added by Clytie Siddall

 -- Christian Perrier <bubulle@debian.org>  Wed,  6 Jul 2005 14:47:09 +0200

localechooser (0.11) unstable; urgency=low

  * Remove whitespace after "US" in defaults, which po-debconf does not strip.
    Really fixes English default.

 -- Christian Perrier <bubulle@debian.org>  Wed,  6 Jul 2005 14:24:01 +0200

localechooser (0.10) unstable; urgency=low

  * Fix default country for English.

 -- Joey Hess <joeyh@debian.org>  Fri,  1 Jul 2005 10:14:35 -0400

localechooser (0.09) unstable; urgency=low

  [ Christian Perrier ]
  * Add Wolof to the list of languages (commented)
  * Set per-language default countries for the short lists at build time
    and no more at run-time
    Closes: #275904
  * Clean out debian/SUPPORTED-short in the clean target
  * Install localization-config except when there is no localization
    (C locale). Install it always for powerpc
    Closes: #277073
  [ Eddy Petrisor ]
  * changed console font to ter-g16f for Romanian

 -- Christian Perrier <bubulle@debian.org>  Thu, 30 Jun 2005 19:49:19 +0200

localechooser (0.08) unstable; urgency=low

  [ Joey Hess ]
  * Remove some cruft, avoid a hang if the iso_3166.tab is missing.
  * Fix display of questions if localechooser is re-run, which I broke
    before.
  * Make seen flags only be set on variables derived from
    debian-installer/locale if its seen flag is set, which allows for
    preseeding w/o seen flag setting to work also, but means that to avoid
    the questions lowmem must set the seen flag.
  * Clean up seen flag misuses, except for some I didn't fully understand.

  * Updated translations:
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - French (fr.po) by Christian Perrier
    - Portuguese (pt.po) by Miguel Figueiredo

 -- Joey Hess <joeyh@debian.org>  Fri, 17 Jun 2005 20:52:48 -0400

localechooser (0.07) unstable; urgency=low

  * Colin Watson
    - Improve copyright file a little, thanks to lintian.
  * Joey Hess
    - Remove preseed/locale, support preseeding of debian-installer/locale.
    - Update documentation of what lowmem needs to do; just preseeding
      debian-installer/locale is sufficient.

 -- Joey Hess <joeyh@debian.org>  Sat, 11 Jun 2005 14:50:31 -0400

localechooser (0.06) unstable; urgency=low

  * Colin Watson
    - Add localechooser/supported-locales, asked at medium priority, to
      allow the user to select support for extra locales in expert mode.
  * Joey Hess
    - Add missing dependency on iso-3166-udeb.
  * Updated translations:
    - Arabic (ar.po) by Ossama M. Khayat
    - Bulgarian (bg.po) by Ognyan Kulev
    - Czech (cs.po) by Miroslav Kure
    - Danish (da.po) by Claus Hindsgaul
    - German (de.po) by Dennis Stampfer
    - Greek, Modern (1453-) (el.po) by Greek Translation Team
    - Spanish (es.po) by Javier Fernández-Sanguino Peña
    - Basque (eu.po) by Piarres Beobide
    - French (fr.po) by Christian Perrier
    - Hebrew (he.po) by Lior Kaplan
    - Italian (it.po) by Giuseppe Sacco
    - Japanese (ja.po) by Kenshi Muto
    - Korean (ko.po) by Changwoo Ryu
    - Dutch (nl.po) by Bart Cornelis
    - Portuguese (pt.po) by Miguel Figueiredo
    - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
    - Russian (ru.po) by Yuri Kozlov
    - Albanian (sq.po) by Elian Myftiu
    - Turkish (tr.po) by Recai Oktaş
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Joey Hess <joeyh@debian.org>  Thu,  9 Jun 2005 11:24:00 -0400

localechooser (0.05) unstable; urgency=low

  * Christian Perrier
    - Add Tagalog to the list of languages
    - Add Punjabi (Gumurkhi) to the list of languages
    - Mark not-yet-supported languages so that they don't appear in the
      languages list
    - Remove Spanish as alternative for Galician as this gives a false
      impression of a bad mix of both languages
    - Remove Macedonian as alternative for Bulgarian
    - Add Esperanto to the list of languages
    - Add Kazakh to the list of languages
    - debian/control: remove initial capital to the package
                      description
  * Colin Watson
    - anna-install bterm-unifont rather than trying to apt-install it.
  * Frans Pop
    - Don't add Denmark to shortlist for English (per #276067)

 -- Christian Perrier <bubulle@debian.org>  Tue,  3 May 2005 17:32:14 +0200

localechooser (0.04) unstable; urgency=low

  * Colin Watson
    - Fix prebaseconfig progress bar template name.
    - Drop priority to optional to avoid causing problems with anna pulling
      in localechooser on top of initrds that use languagechooser instead.
  * Updated translations:
    - Czech (cs.po) by Miroslav Kure
    - Slovak (sk.po) by Peter KLFMANiK Mann

 -- Colin Watson <cjwatson@debian.org>  Thu, 13 Jan 2005 18:06:10 +0000

localechooser (0.03) unstable; urgency=low

  * Christian Perrier
    - debian/control: add missing Build-Depends on iso-codes and locales
      Closes: #286848

 -- Christian Perrier <bubulle@debian.org>  Thu, 23 Dec 2004 09:01:07 +0100

localechooser (0.02) unstable; urgency=low

  * Christian Perrier
    - debian/templates-in, Makefile, debian/po/POTFILES.in
      Renamed templates.in to localechooser.templates-in
    - Added belarusian to the list of languages
  * Updated translations:
    - Czech (cs.po) by Miroslav Kure
    - Danish (da.po) by Claus Hindsgaul
    - Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
    - French (fr.po) by French Team
    - Hebrew (he.po) by Lior Kaplan
    - Japanese (ja.po) by Kenshi Muto
    - Lithuanian (lt.po) by Kęstutis Biliūnas
    - Dutch (nl.po) by Bart Cornelis
    - Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
    - Portuguese (pt.po) by Miguel Figueiredo
    - Romanian (ro.po) by Eddy Petrisor
    - Turkish (tr.po) by Recai Oktaş
    - Ukrainian (uk.po) by Eugeniy Meshcheryakov
    - Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu

 -- Christian Perrier <bubulle@debian.org>  Mon, 13 Dec 2004 14:23:00 +0100

localechooser (0.01) unstable; urgency=low

  * New package built by merging languagechooser and countrychooser
    First published in d-i repository. Specific changelog starts here.
    This release will close the following languagechooser bugs:
    - 265085: languagechooser and countrychooser being not different
      packages anymore, the user may change the language at any
      time. Also closes 268815 and 272325
    - 271258: picking a C "locale" is now possible
    - 259104: only display languages marked as OK for it when
      debian-installer/framebuffer=false
  * Christian Perrier
    - removed unused replace_translations
    - Welsh properly spelled in Welsh
    - Add entries for post-sarge supported languages

 -- Christian Perrier <bubulle@debian.org>  Sun, 28 Nov 2004 11:08:35 +0100