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
|
main-menu (1.62) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by zer0-x
* Hindi (hi.po) by KushagraKarira
* Kabyle (kab.po) by Selyan Sliman Amiri
-- Holger Wansing <hwansing@mailbox.org> Sat, 13 Mar 2021 19:12:18 +0100
main-menu (1.61) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
-- Holger Wansing <hwansing@mailbox.org> Wed, 30 Dec 2020 23:30:41 +0100
main-menu (1.60) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Persian (fa.po) by سهیل خانعلیپور
* Dutch (nl.po) by Frans Spiesschaert
[ New translations ]
* Kabyle (kab.po) by Slimane Selyan Amiri
* Occitan (oc.po) by Quentin PAGÈS
-- Holger Wansing <hwansing@mailbox.org> Thu, 29 Oct 2020 19:37:21 +0100
main-menu (1.59) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
-- Holger Wansing <hwansing@mailbox.org> Sun, 02 Feb 2020 19:17:49 +0100
main-menu (1.58) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927525)
[ Holger Wansing ]
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Updated translations ]
* German (de.po) by Holger Wansing
* Croatian (hr.po) by gogogogi
-- Holger Wansing <hwansing@mailbox.org> Sat, 19 Oct 2019 23:20:33 +0200
main-menu (1.57) 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:38:19 +0100
main-menu (1.56) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Asturian (ast.po) by Xuacu Saturio
* German (de.po) by Holger Wansing
* Marathi (mr.po) by Nayan Nakhare
-- Holger Wansing <hwansing@mailbox.org> Tue, 30 Oct 2018 18:57:52 +0100
main-menu (1.55) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
-- Holger Wansing <hwansing@mailbox.org> Sun, 12 Aug 2018 09:38:25 +0200
main-menu (1.54) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Serbian (sr.po) by Слободан Симић(Slobodan Simić)
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Thu, 15 Feb 2018 18:45:03 +0100
main-menu (1.53) unstable; urgency=medium
[ Updated translations ]
* Panjabi (pa.po) by Aman ALam
* Serbian (sr.po) by Filipovic Dragan
-- Christian Perrier <bubulle@debian.org> Fri, 12 Jan 2018 16:40:05 +0100
main-menu (1.52) unstable; urgency=medium
[ Updated translations ]
* Greek (el.po) by Sotirios Vrachas
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Sat, 25 Nov 2017 19:07:22 +0100
main-menu (1.51) unstable; urgency=medium
* Build-depend against new enough version of libdebian-installer4-dev.
-- Bastian Blank <waldi@debian.org> Sun, 05 Mar 2017 12:05:40 +0100
main-menu (1.50) unstable; urgency=medium
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
-- Christian Perrier <bubulle@debian.org> Tue, 17 Jan 2017 06:48:43 +0100
main-menu (1.49) unstable; urgency=medium
[ Updated translations ]
* Kazakh (kk.po) by Baurzhan Muftakhidinov
-- Christian Perrier <bubulle@debian.org> Tue, 22 Nov 2016 09:14:03 +0100
main-menu (1.48) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Thu, 04 Feb 2016 19:10:12 +0100
main-menu (1.47) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 25 Jul 2015 21:45:56 +0200
main-menu (1.46) 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 14:53:04 +0200
main-menu (1.45) unstable; urgency=medium
[ Updated translations ]
* Hungarian (hu.po) by Judit Gyimesi
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Cyril Brulebois <kibi@debian.org> Fri, 14 Mar 2014 16:04:13 +0100
main-menu (1.44) unstable; urgency=low
[ Updated translations ]
* Bosnian (bs.po) by Amila Valjevčić
* Hungarian (hu.po) by Judit Gyimesi
-- Christian Perrier <bubulle@debian.org> Sat, 14 Dec 2013 12:43:30 +0100
main-menu (1.43) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 09 Nov 2013 19:00:10 +0100
main-menu (1.42) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Fri, 16 Aug 2013 16:10:19 +0200
main-menu (1.41) unstable; urgency=low
[ Dmitrijs Ledkovs ]
* Set debian source format to '3.0 (native)'.
* Bump debhelper compat level to 9.
* Set Vcs-* to canonical format.
[ Colin Watson ]
* Handle asprintf failures consistently.
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jul 2013 12:58:46 +0200
main-menu (1.40) unstable; urgency=low
[ Colin Watson ]
* Use correct compiler when cross-building.
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Wed, 15 May 2013 15:44:49 +0200
main-menu (1.39) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Hungarian (hu.po) by Dr. Nagy Elemér Károly
[ Christian Perrier ]
* Add myself to Uploaders
* Use Package-Type in debian/control
-- Christian Perrier <bubulle@debian.org> Tue, 11 Dec 2012 06:52:52 +0100
main-menu (1.38) unstable; urgency=low
* Team upload
[ Updated translations ]
* Welsh (cy.po) by Daffyd Tomos
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 06:17:33 +0200
main-menu (1.37) unstable; urgency=low
* Team upload
[ Updated translations ]
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* Tibetan (bo.po) by Tennom
* German (de.po) by Holger Wansing
* Estonian (et.po) by Mattias Põldaru
* Galician (gl.po) by Jorge Barreiro
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Mahyuddin Susanto
* Icelandic (is.po) by Sveinn í Felli
* Italian (it.po) by Milo Casagrande
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Kannada (kn.po) by Prabodh C P
* Lao (lo.po) by Anousak Souphavanh
* Lithuanian (lt.po) by Rimas Kudelis
* Latvian (lv.po) by Rūdolfs Mazurs
* Macedonian (mk.po) by Arangel Angov
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Marcin Owsiany
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po)
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Borys Yanovych
* Simplified Chinese (zh_CN.po) by YunQiang Su
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Thu, 14 Jun 2012 22:05:05 +0200
main-menu (1.36) unstable; urgency=low
* Team upload
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Korean (ko.po) by Changwoo Ryu
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Uyghur (ug.po) by Sahran
-- Christian Perrier <bubulle@debian.org> Fri, 22 Apr 2011 22:44:40 +0200
main-menu (1.35) unstable; urgency=low
[ Joey Hess ]
* Support escaping of menu items containing commas. Closes: #613623
[ Updated translations ]
* Northern Sami (se.po) by Børre Gaup
-- Otavio Salvador <otavio@debian.org> Thu, 17 Feb 2011 08:15:13 -0200
main-menu (1.34) unstable; urgency=low
[ Updated translations ]
* Lao (lo.po) by Anousak Souphavanh
* Sinhala (si.po) by Danishka Navin
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 20:02:23 -0200
main-menu (1.33) unstable; urgency=low
[ Colin Watson ]
* Use debconf_x_save (requires libdebconfclient0-dev 0.106) instead of
writing out code by hand.
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Israt Jahan
* Bosnian (bs.po) by Armin Beirovi
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Anders Jenbo
* Persian (fa.po) by Ebrahim Byagowi
* Icelandic (is.po) by Sveinn Felli
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Telugu (te.po) by Arjuna Rao Chavala
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 14:36:32 -0200
main-menu (1.32) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by astur
* Belarusian (be.po) by Viktar Siarheichyk
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by acathur
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Central Khmer (km.po) by Khoem Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Macedonian (mk.po) by Arangel Angov
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
* Romanian (ro.po) by ioan-eugen stan
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 16:49:51 +0200
main-menu (1.31) unstable; urgency=low
[ Colin Watson ]
* Upgrade to debhelper v7.
[ Frans Pop ]
* Remove check for menu item 99900; no packages use it anymore.
* Remove no longer needed Lintian override for missing Standards-
Version field.
* Don't mark menu items that are not installable as "seen". This will
allow auto-install to be simplified.
[ Updated translations ]
* Asturian (ast.po) by Marcos Antonio Alvarez Costales
* Belarusian (be.po) by Pavel Piatruk
* Bengali (bn.po) by Israt Jahan
* German (de.po) by Holger Wansing
* Greek, Modern (1453-) (el.po)
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Omer Zak
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Tue, 23 Mar 2010 21:40:55 +0100
main-menu (1.30) unstable; urgency=low
* Add support to exit the installer using di-utils-exit-installer.
-- Otavio Salvador <otavio@debian.org> Fri, 03 Jul 2009 08:25:45 -0300
main-menu (1.29) unstable; urgency=low
[ Frans Pop ]
* After the debconf priority was lowered because of an error, return to the
default priority in one step when next a component runs successfully.
* Instead of lowering the debconf priority after the user backs up from a
question, match the priority at which the menu is displayed to the current
debconf priority. Closes: #331679.
* Remove myself as uploader.
[ Updated translations ]
* Asturian (ast.po) by Marcos Alvarez Costales
* Bengali (bn.po) by Md. Rezwan Shahid
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by Piarres Beobide
* Galician (gl.po) by Marce Villarino
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Kazakh (kk.po) by daur88
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Tagalog (tl.po) by Eric Pareja
-- Christian Perrier <bubulle@debian.org> Fri, 12 Jun 2009 06:20:48 +0200
main-menu (1.28) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bosnian (bs.po) by Armin Besirovic
* Welsh (cy.po) by Jonathan Price
* Danish (da.po)
* Esperanto (eo.po) by Felipe Castro
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* French (fr.po) by Christian Perrier
* Gujarati (gu.po) by Kartik Mistry
* Croatian (hr.po) by Josip Rodin
* Italian (it.po) by Milo Casagrande
* Latvian (lv.po) by Peteris Krisjanis
* Macedonian (mk.po) by Arangel Angov
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Russian (ru.po) by Yuri Kozlov
* Serbian (sr.po) by Veselin Mijušković
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 19:16:22 -0300
main-menu (1.27) unstable; urgency=low
[ Frans Pop ]
* Remove Christian Perrier, Martin Sjogren and Matt Kraai as Uploaders with
many thanks for their past contributions.
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Marathi (mr.po) by Sampada
* Panjabi (pa.po) by Amanpreet Singh Alam
-- Otavio Salvador <otavio@debian.org> Thu, 08 May 2008 14:07:52 -0300
main-menu (1.26) unstable; urgency=low
* Automatically mark components with a menu item number of 99999 or 99900
as uninstallable (99900 is deprecated). This can be used for components
that should be selectable by users in anna, but don't have functionality
that can be run from the main menu. Examples are openssh-client and fdisk.
[ Updated translations ]
* Thai (th.po) by Theppitak Karoonboonyanan
-- Frans Pop <fjp@debian.org> Wed, 26 Mar 2008 14:07:35 +0100
main-menu (1.25) unstable; urgency=low
[ Updated translations ]
* Finnish (fi.po) by Esko Arajärvi
* Indonesian (id.po) by Arief S Fitrianto
* Latvian (lv.po) by Viesturs Zarins
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* 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ş
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 08:30:33 -0200
main-menu (1.24) unstable; urgency=low
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Korean (ko.po) by Changwoo Ryu
* Malayalam (ml.po) by Praveen|പരവീണ A|എ
* Panjabi (pa.po) by A S Alam
-- Christian Perrier <bubulle@debian.org> Thu, 10 Jan 2008 07:20:12 +0100
main-menu (1.22) unstable; urgency=low
[ Joey Hess ]
* Fix test for new menu items that come before the last successful item.
It's ok to jump up the menu to run such new items. Closes: #444462
* Fix NEVERDEFAULT test. Closes: #277743
* Support DEB_BUILD_OPTIONS=nostrip. Closes: #437554
* Add a (lame) guard against infinite recursion in di_config_package.
Closes: #437323
[ Updated translations ]
* Belarusian (be.po) by Hleb Rubanau
-- Joey Hess <joeyh@debian.org> Thu, 25 Oct 2007 23:09:24 -0400
main-menu (1.21) unstable; urgency=low
[ Colin Watson ]
* Fix a few memory leaks in corner cases.
[ Jérémy Bobbio ]
* Fix a memory leak in show_main_menu(). (Closes: #438121)
Thanks to Masami Ichikawa for the patch!
* Do not raise the priority when cdebconf-priority succeed.
(Closes: #331679)
[ Updated translations ]
* Bengali (bn.po) by Jamil Ahmed
* Danish (da.po) by Claus Hindsgaul
* Italian (it.po) by Stefano Canepa
* Portuguese (pt.po) by Miguel Figueiredo
* Swedish (sv.po) by Daniel Nylander
* Vietnamese (vi.po) by Clytie Siddall
-- Jérémy Bobbio <lunar@debian.org> Tue, 25 Sep 2007 23:50:06 +0200
main-menu (1.20) unstable; urgency=low
* Remove rather redundant extended description of main menu question.
The title contains the same information.
* Reset debconf title when displaying a failure message, otherwise the title
could be left set to an intermediate value.
-- Joey Hess <joeyh@debian.org> Wed, 23 May 2007 18:47:17 -0400
main-menu (1.19) unstable; urgency=low
[ Colin Watson ]
* Avoid suppressing menu items that have never been seen before just
because they have a lower menu item number than the last successful item
(closes: #288053).
* Restore previous default priority when selecting a menu item (other than
neverdefault items) immediately after backing up to the main menu.
[ Joey Hess ]
* Increase NEVERDEFAULT to 90000.
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:25:07 -0400
main-menu (1.18) unstable; urgency=low
[ Updated translations ]
* Finnish (fi.po) by Tapio Lehtonen
* Hebrew (he.po) by Lior Kaplan
* Malayalam (ml.po) by Praveen A
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:54:34 +0100
main-menu (1.17) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:46:37 +0100
main-menu (1.16) unstable; urgency=low
* show_main_menu: free menu variable after use. Closes: #405774.
Thanks to Masami Ichikawa who spotted the error.
* Add myself to uploaders.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Danish (da.po) by Claus Hindsgaul
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Russian (ru.po) by Yuri Kozlov
* Tagalog (tl.po) by Eric Pareja
-- Frans Pop <fjp@debian.org> Sat, 6 Jan 2007 10:29:01 +0100
main-menu (1.15) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Andrei Darashenka
* Dzongkha (dz.po) by Jurmey Rabgay
* Italian (it.po) by Stefano Canepa
* Kurdish (ku.po) by Erdal Ronahi
* Romanian (ro.po) by Eddy Petrișor
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 15:12:26 +0200
main-menu (1.14) unstable; urgency=low
* Make cdebconf honour currently set debconf/language (#381142).
* Add Lintian override for standards-version.
[ Updated translations ]
* German (de.po) by Jens Seidel
* Greek (el.po) by quad-nrg.net
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Gujarati (gu.po) by Kartik Mistry
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Marathi (mr.po) by Priti D. Patil
* Punjabi (Gurmukhi) (pa.po) by A S Alam
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Frans Pop <fjp@debian.org> Fri, 6 Oct 2006 02:39:02 +0200
main-menu (1.13) unstable; urgency=low
* Comment out some debug items, switch another log item to info.
* Don't log about priority changing the first time through.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Claus Hindsgaul
* Dzongkha (dz.po)
* Esperanto (eo.po) by Serge Leblanc
* Basque (eu.po) by Piarres Beobide
* Irish (ga.po) by Kevin Patrick Scannell
* Hungarian (hu.po) by SZERVÑC Attila
* Georgian (ka.po) by Aiet Kolkhi
* Khmer (km.po) by Leang Chumsoben
* Kurdish (ku.po) by Erdal Ronahi
* Nepali (ne.po) by Shiva Pokharel
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Čuhalev
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Joey Hess <joeyh@debian.org> Wed, 7 Jun 2006 22:06:44 -0400
main-menu (1.12) unstable; urgency=low
* Rebuilt with libd-i 0.41, 0.40 was broken.
-- Joey Hess <joeyh@debian.org> Sat, 18 Mar 2006 14:16:09 -0500
main-menu (1.11) unstable; urgency=low
* Add misc:Depends to get cdebconf dependency.
* Rebuilt with new libd-i and cdebconf to get spiff correct library udeb
dependencies.
[ Updated translations ]
* Bosnian (bs.po) by Safir Secerovic
* Hungarian (hu.po) by SZERVÑC Attila
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
-- Joey Hess <joeyh@debian.org> Sat, 18 Mar 2006 14:00:35 -0500
main-menu (1.10) unstable; urgency=low
[ Joey Hess ]
* If a default menu item cannot be determined, drop priority to avoid
looping.
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Hindi (hi.po) by Nishant Sharma
* Icelandic (is.po) by David Steinn Geirsson
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrişor
* Slovenian (sl.po) by Jure Cuhalev
* Swedish (sv.po) by Daniel Nylander
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Tue, 24 Jan 2006 23:01:40 +0100
main-menu (1.09) unstable; urgency=low
* Avoid trailing commas at end of missing-provide choices list since
cdebconf is picky. Closes: #327393
[ Updated translations ]
* Hindi (hi.po) by Nishant Sharma
* Icelandic (is.po) by David Steinn Geirsson
* Swedish (sv.po) by Daniel Nylander
-- Joey Hess <joeyh@debian.org> Wed, 19 Oct 2005 02:20:59 -0400
main-menu (1.08) unstable; urgency=low
[ Colin Watson ]
* Rip out all of the code to manually fetch localised templates; cdebconf
has known how to deal with this itself since 2002/2003 or so.
[ Updated translations ]
* German (de.po) by Holger Wansing
* Greek, Modern (1453-) (el.po) by Greek Translation Team
* Basque (eu.po) by Piarres Beobide
* Persian (fa.po) by Arash Bijanzadeh
* French (fr.po) by Christian Perrier
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Romanian (ro.po) by Eddy Petrisor
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Joey Hess <joeyh@debian.org> Mon, 26 Sep 2005 17:10:20 +0200
main-menu (1.07) unstable; urgency=low
* Updated translations:
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Hebrew (he.po) by Lior Kaplan
- Tagalog (tl.po) by Eric Pareja
-- Joey Hess <joeyh@debian.org> Fri, 15 Jul 2005 16:56:27 +0300
main-menu (1.06) unstable; urgency=low
* Updated translations:
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Slovak (sk.po) by Peter Mann
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Vietnamese (vi.po) by Clytie Siddall
-- Christian Perrier <bubulle@debian.org> Wed, 6 Jul 2005 23:30:10 +0200
main-menu (1.05) unstable; urgency=low
[ Joey Hess ]
* Build with -Os and -fomit-frame-pointer, saving three delightful
kilobytes.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Wed, 15 Jun 2005 16:36:31 -0400
main-menu (1.04) unstable; urgency=low
* Colin Watson
- Propagate EXIT_BACKUP from recursive calls to di_config_package()
(Ubuntu bug #8889).
* Updated translations:
- Greek, Modern (1453-) (el.po) by Kostas Papadimas
- Basque (eu.po) by Piarres Beobide
- Hebrew (he.po) by Lior Kaplan
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Yuri Kozlov
-- Colin Watson <cjwatson@debian.org> Fri, 20 May 2005 17:04:15 +0100
main-menu (1.03) unstable; urgency=low
NOTE: Not for sarge.
* Petter Reinholdtsen
- Improve the handling of errors when debconf priority limit is
set to critical. Patch from Colin Watson. (Closes: #268425)
* Colin Watson
- Add support for executables in /lib/main-menu.d/, which get run at
main-menu startup. This allows packages to run scripts that need to
share main-menu's debconf frontend but that don't merit a menu item,
such as setting an info message.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Guillem Jover
- Danish (da.po) by Claus Hindsgaul
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (es.po) by Javier Fernandez-Sanguino Peña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Jacobo Tarrio
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Polish (pl.po) by Bartosz Fenski
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Sun, 1 May 2005 17:09:37 -0400
main-menu (1.02) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Hungarian (hu.po) by VEROK Istvan
- Indonesian (id.po) by Debian Indonesia Team
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Bjorn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Russian L10N Team
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 6 Oct 2004 14:31:34 -0400
main-menu (1.01) unstable; urgency=low
* Petter Reinholdtsen
- Remove myself as uploader. I'm no longer developing this package.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Catalan (ca.po) by Jordi Mallach
- 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 (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Axel Bojer
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Russian L10N Team
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Mon, 27 Sep 2004 21:21:24 -0400
main-menu (1.00) unstable; urgency=low
* Bastian Blank
- Check for availability of debian-installer/language.
* Christian Perrier
- Rename templates file to main-menu.templates
* Joey Hess
- Remove the EXIT_QUIT and EXIT_RESTART return code handling
as that is no longer used. Closes: #258877
- This may as well be 1.0 with the rest of d-i.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Danish (da.po) by Claus Hindsgaul
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- French (fr.po) by French Team
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by
- Polish (pl.po) by Bartosz Fenski
- Turkish (tr.po) by Recai Oktaş
-- Joey Hess <joeyh@debian.org> Fri, 27 Aug 2004 16:19:42 -0400
main-menu (0.072) unstable; urgency=low
* Joey Hess
- Remove some dead code Bruce Perens noticed.
* Colin Watson
- Avoid empty entries in generated menu choices list; main-menu wrongly
assumed that the last package in the list is always installable.
* Updated translations:
- Arabic (ar.po) by Abdulaziz Al-Arfaj
- Croatian (hr.po) by Kruno
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Colin Watson <cjwatson@debian.org> Sat, 24 Jul 2004 03:27:54 +0100
main-menu (0.071) unstable; urgency=low
* Bastian Blank
- Use X_SAVE.
- Fix backup.
-- Bastian Blank <waldi@debian.org> Sat, 10 Jul 2004 22:26:58 +0200
main-menu (0.070) unstable; urgency=low
* Bastian Blank
- Cleanup.
- Exit cleanly if asked to do so. Needs cdebconf 0.68.
* Updated translations:
- Welsh (cy.po) by Dafydd Harries
- Basque (eu.po) by Piarres Beobide Egaña
- fa (fa.po) by Arash Bijanzadeh
- Finnish (fi.po) by Tapio Lehtonen
-- Bastian Blank <waldi@debian.org> Sat, 10 Jul 2004 22:02:28 +0200
main-menu (0.067) unstable; urgency=low
* Matt Kraai
- Do not skip a package unless all of the virtual packages that it
provides are provided by installed packages (closes: #247929).
* Updated translations:
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Vietnamese (vi.po) by Vũ Quang Trung
* Christian Perrier
- add myself to Uploaders
-- Christian Perrier <bubulle@debian.org> Sat, 22 May 2004 08:46:36 +0200
main-menu (0.066) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Romanian (ro.po) by Eddy Petrisor
- Vietnamese (vi.po) by Vu Quang Trung
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 13:08:55 -0400
main-menu (0.065) unstable; urgency=low
* Updated translations:
- Finnish (fi.po) by Tapio Lehtonen
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Italian (it.po) by Giuseppe Sacco
- Bokmal, Norwegian (nb.po) by Axel Bojer
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Turkish (tr.po) by Osman Yüksel
-- Joey Hess <joeyh@debian.org> Tue, 20 Apr 2004 10:44:06 -0400
main-menu (0.064) unstable; urgency=low
* Updated translations:
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Basque (eu.po) by Piarres Beobide Egaña
- Gallegan (gl.po) by Héctor Fernández López
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Slovak (sk.po) by Peter KLFMANiK Mann
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 11 Apr 2004 21:00:47 -0400
main-menu (0.063) unstable; urgency=low
* Joey Hess
- Don't raise priority when running neverdefault menu items.
Closes: #240182
- Comment out some debugging code.
- Add a nasty hack to detect backups. (Proper fix documented in TODO).
- Show a message when a menu item fails. Closes: #218597, #213015
- Don't link with -ggdb.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Héctor Fernández López
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VERÓK István
- Indonesian (id.po) by Parlin Imanuel Toh
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Nikolai Prokoschenko
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Swedish (sv.po) by André Dahlqvist
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Sun, 4 Apr 2004 16:10:43 -0400
main-menu (0.062) unstable; urgency=low
* Joey Hess
- Backed out Denis's showold setting code of version 0.057. cdebconf's
new seen flag setting behavior (it never sets it) makes this
unnecessary.
- Don't set seen flags of main-menu's own templates, either.
* Updated translations:
- Indonesian (id.po) by Parlin Imanuel Toh
- Turkish (tr.po) by Osman Yüksel
- Albanian (sq.po) by Elian Myftiu
-- Joey Hess <joeyh@debian.org> Tue, 30 Mar 2004 14:47:47 -0500
main-menu (0.061) unstable; urgency=low
* Bastian Blank
- Use the permissive dependency resolver.
- Don't try to set the title of a non-menu-item.
- Build-Depend agains libdebian-installer4-dev (>= 0.20).
-- Bastian Blank <waldi@debian.org> Mon, 15 Mar 2004 11:01:42 +0100
main-menu (0.060) unstable; urgency=low
* Joey Hess
- Move the 900 constant out the the .h.
* Translations
- Dafydd Harries
- Added Welsh translation (cy.po)
-- Joey Hess <joeyh@debian.org> Sat, 13 Mar 2004 00:10:35 -0500
main-menu (0.059) unstable; urgency=low
* Joshua Kwan
- Don't default to packages which are 'earlier' than the last
successfully configured package that has a value of less
than 900 (any higher are the packages that never get defaulted
to.), closes: #224633
- Add self to Uploaders.
-- Joshua Kwan <joshk@triplehelix.org> Mon, 8 Mar 2004 18:27:12 -0800
main-menu (0.058) unstable; urgency=low
* Translations
- Bartosz Fenski
- Updated Polish translation (pl.po)
- Ming Hua
- Initial Traditional Chinese translation (zh_TW.po), by Tetralet
- Updated Traditional Chinese translation (zh_TW.po), by Tetralet
- Håvard Korsvoll
- Updated Norwegian, nynorsk translation (nn.po).
- Eddy Petrisor
- Initial Romanian translation (ro.po)
- Håvard Korsvoll
- Updated Norwegian, bokmål translation, (nb.po). From Axel Bojer
-- Joey Hess <joeyh@debian.org> Tue, 2 Mar 2004 13:12:38 -0500
main-menu (0.057) unstable; urgency=low
* Denis Barbier
- When a package is reconfigured, set debconf/showold to true and
restore the previous value after executing package script.
As soon as this package is uploaded, cdebconf-udeb can set
debconf/showold to false by default to fix #229648.
* Matt Kraai
- Remove an unused variable.
* Joey Hess
- Convert to using debhelper 4.2's udeb support.
- Update to debhelper v4 too.
* Translators:
- Eugen Meshcheryakov : added Ukrainian translation (uk.po)
- Kęstutis Biliūnas: updated Lithuanian translation (lt.po)
-- Joey Hess <joeyh@debian.org> Sun, 22 Feb 2004 21:57:47 -0500
main-menu (0.056) unstable; urgency=low
* Bastian Blank
- Fix isinstallable calls.
- Build-Depend against libdebian-installer4-dev (>= 0.18).
* Joey Hess
- Remove the stderr interception and logging, it's all sent to the
messages file these days so this code was unnecessary.
* Translators:
- Peter Mann: update Slovak translation
- Jordi Mallach: Update Catalan translation.
- Lior Kaplan: initial Hebrew translation
- h3li0s: added Albanian translation (sq.po)
- Kenshi Muto: Updated Japanese translation (ja.po)
-- Joey Hess <joeyh@debian.org> Thu, 5 Feb 2004 14:59:42 -0500
main-menu (0.055) unstable; urgency=low
* Nikolai Prokoschenko
- Updated russian translation (ru.po)
* Safir Secerovic
- Update Bosnian translation (bs.po).
-- Joey Hess <joeyh@debian.org> Thu, 22 Jan 2004 19:53:40 -0500
main-menu (0.054) unstable; urgency=low
* Ming Hua
- Updated Simplified Chinese translation (zh_CN.po), change the
encoding to UTF-8
* Bart Cornelis
- Merged Norwegian Nynorsk (nn.po) translation from skolelinux-cvs
-- Petter Reinholdtsen <pere@debian.org> Wed, 31 Dec 2003 17:06:48 +0100
main-menu (0.053) unstable; urgency=low
* Bart Cornelis
- Merged Norwegian Bokmael (nb.po) translation from skolelinux-cvs
* Peter Mann
- Updated Slovak translations
-- Joey Hess <joeyh@debian.org> Thu, 25 Dec 2003 19:20:56 -0500
main-menu (0.052) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Verok Istvan
- Initial Hungarian translation (hu.po)
* Anmar Oueja
- Initial Arabic translation. (ar.po)
* Arash Bijanzadeh
- Initial Farsi translation. (fa.po)
* Bart Cornelis
Updated Dutch translation (nl.po)
* Giuseppe Sacco
- updated italian translation
- switched to utf8
* Teófilo Ruiz Suárez
- Updated Spanish translation
- switching to utf8
* André Dahlqvist
- Update Swedish translation. (sv.po)
* Changwoo Ryu
- Initial Korean translation. (ko.po)
* Konstantinos Margaritis
- Updated Greek translation. (el.po)
* Peter Mann
- Updated Slovak translation. (sk.po)
* Petter Reinholdtsen
- Updated Norwegian Bokmål (nb.po).
- Update Norwegian Nynorsk (nn.po), thanks to Gaute Hvoslef Kvalnes.
* Miguel Figueiredo
- Added non-brazilian portuguese (pt.po).
* Ognyan Kulev
- Added/updated bulgarian translation (bg.po).
* Jure Cuhalev
- Added/updated slovenian translation (sl.po).
-- Joey Hess <joeyh@debian.org> Mon, 22 Dec 2003 13:39:44 -0500
main-menu (0.051) unstable; urgency=low
* Dennis Stampfer
- Update German translation de.po
* Konstantinos Margaritis
- Initial Greek translation (el.po)
* Chris Tillman
- Christian Perrier's refinement and standardization, Closes: #220449
- Added ${VERSION} so the version will show in the main menu title
* Claus Hindsgaul
- Update Danish translation (da.po).
* Safir Šećerović
- Update Bosnian translation.
* Joey Hess
- Revert the ${VERSION} thing as it does not work.
* Peter Mann
- Initial Slovak translation (sk.po).
* Steinar H. Gunderson
- If main-menu encounters an unknown debconf/priority, it is no longer
interpreted as `critical', but as `medium'.
* Denis Barbier
- Fix a buffer overflow in menu_entry() when language contains an
underscore and the package description was not translated into
this language.
- Package descriptions could not be translated if LANGUAGE setting
contains any colon, which is a quite common case.
* Claus Hindsgaul
- Update Danish translation (da.po).
* Christian Perrier
- Update French translation.
* Tommi Vainikainen
- Update Finnish translation.
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Miroslav Kure
- Update Czech translation.
* Jordi Mallach
- Update Catalan translation.
* Kęstutis Biliūnas
- Updated Lithuanian translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* Ilgiz Kalmetev
- Update Russian translation. Closes: #221655.
-- Joey Hess <joeyh@debian.org> Tue, 9 Dec 2003 15:36:22 -0500
main-menu (0.050) unstable; urgency=low
* Kenshi Muto
- Update Japanese translation (ja.po)
-- Joey Hess <joeyh@debian.org> Fri, 7 Nov 2003 21:56:09 -0500
main-menu (0.049) unstable; urgency=low
* Bart Cornelis
- update Dutch translation (nl.po)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
-- Joey Hess <joeyh@debian.org> Fri, 7 Nov 2003 13:41:03 -0500
main-menu (0.048) unstable; urgency=low
* Joey Hess
- log an internal error if it cannot find the selected menu item
- cleaned up the template text a bit
* Safir Secerovic, Amila Akagic
- Add Bosnian translation (bs.po)
* Claus Hindsgaul
- Update Danish translation (da.po).
* André Luís Lopes
- Improve pt_BR (Brazilian Portuguese) translation a bit.
* Pierre Machard
- Run debconf-updatepo
- Update French translation.
* Kęstutis Biliūnas
- Update Lithuanian translation.
* Alastair McKinstry
- Fallback when we don't have translations for dialects; eg "de_CH" drops
back to the "de" translation if "de_CH" is missing.
* Miroslav Kure
- Update Czech (cs.po) translation.
* Tommi Vainikainen
- Update Finnish (fi.po) translation.
* Petter Reinholdtsen
- Updated Norwegian Bokmål (nb.po).
-- Joey Hess <joeyh@debian.org> Thu, 30 Oct 2003 18:23:08 -0500
main-menu (0.047) unstable; urgency=low
* Kęstutis Biliūnas
- Update Lithuanian translation (lt.po).
* Matt Kraai
- Do not default to a package that provides a virtual package that is
also provided by a package that is already installed (closes:
#216787).
-- Matt Kraai <kraai@debian.org> Fri, 24 Oct 2003 01:06:09 -0700
main-menu (0.046) unstable; urgency=low
* Tommi Vainikainen
- Add Finnish (fi.po) translation
* Matt Kraai
- Do not default to a package that provides a virtual package that is
also provided by a package that is already installed (closes:
#216787).
- Remove redundant build-dependency on dpkg-dev (>= 1.7.0).
- Add self to uploaders.
-- Matt Kraai <kraai@debian.org> Mon, 20 Oct 2003 22:37:52 -0700
main-menu (0.045) unstable; urgency=low
* Christian Perrier
- Improve French translation.
* Matt Kraai
- Set the title before configuring a package (Closes: #213725).
* Kęstutis Biliūnas
- Add Lithuanian (lt.po) translation.
* Claus Hindsgaul
- Actually include Danish translation (da.po) to CVS.
* Petter Reinholdtsen
- Removed Tollef Fog Heen as uploader. He haven't touched the package
for a long time.
- Added myself as uploader.
-- Petter Reinholdtsen <pere@debian.org> Sun, 19 Oct 2003 18:05:30 +0200
main-menu (0.044) unstable; urgency=low
* Claus Hindsgaul
- Update da (Danish) translation.
* Alastair McKinstry
- Depend on libdebconfclient-dev > 0.47, for fixed debconf_capb() macro.
* Jure Cuhalev
- New Slovenian translation. Closes: #214357.
* Petter Reinholdtsen
- Versioned depend against virtual package libdebconfclient-dev do not
work. Depend on libdebconfclient0-dev instead.
-- Joey Hess <joeyh@debian.org> Sun, 12 Oct 2003 21:31:18 +0100
main-menu (0.043) unstable; urgency=low
* Javier Fernandez-Sanguino:
- Updated spanish translation
* Alastair McKinstry
- Move to new debconf macros.
* Petter Reinholdtsen
- Update ru.po, thanks to patch from Ilgiz Kalmetev (Closes: #214357)
-- Petter Reinholdtsen <pere@debian.org> Sun, 12 Oct 2003 19:09:04 +0200
main-menu (0.042) unstable; urgency=low
* Matt Kraai
- Set the title for menu entries (Closes: #213185).
* Bastian Blank
- Port to libdebian-installer api version 4.
* Petter Reinholdtsen
- Add Simplified Chinese debconf translation (zh_CN.po) thanks
to patch from Ming Hua.
- Avoid some compile warnings, based on a patch from Goswin
von Brederlow.
- Depend on libdebian-installer4-dev >= 0.17. Patch from Goswin
von Brederlow.
* Miroslav Kure
- Initial Czech translation.
* Bart Cornelis
- Updated dutch translation (nl.po)
-- Bastian Blank <waldi@debian.org> Thu, 09 Oct 2003 14:32:51 +0200
main-menu (0.041) unstable; urgency=low
* Alastair McKinstry
- Convert changelog to UTF-8 as per policy.
* Matt Kraai
- Change menu entry template name from main-menu/<package> to
debian-installer/<package>/title.
- Preserve the user's choice to provide a virtual package (Closes:
#213360).
-- Sebastian Ley <ley@debian.org> Thu, 2 Oct 2003 19:18:43 +0200
main-menu (0.040) unstable; urgency=low
* Pierre Machard
- Update French po-debconf translation.
* Andre Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Matt Kraai
- Fetch virtual package menu entries from debconf templates.
* Kenshi Muto
- Update ja.po.
-- Petter Reinholdtsen <pere@debian.org> Sun, 28 Sep 2003 14:07:40 +0200
main-menu (0.039) unstable; urgency=low
* Denis Barbier
- Run debconf-updatepo
* Jordi Mallach
- Added Catalan (ca) translation.
* Pierre Machard
- Proofread French po-debconf translation thanks to
[Christian Perrier]
* Kenshi Muto
- Update ja.po
* Andre Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Bart Cornelis
- updated dutch translation
* Matt Kraai
- Fetch menu entries from debconf templates (Closes: #212922).
- Log packages that do not have a debconf menu entry.
* Petter Reinholdtsen
- Use SETTITLE instead of obsolete TITLE.
- Ran debconf2po-update.
- Updated nb.po.
-- Petter Reinholdtsen <pere@debian.org> Sat, 27 Sep 2003 17:50:12 +0200
main-menu (0.038) unstable; urgency=low
* Petter Reinholdtsen
- Added Greek translation (el.po), received from
George Papamichelakis.
- Added Russian debconf template translation (ru.po), patch
from Serge Winitzki.
- Changed charset for el.po file, as it is invalid as UTF-8.
I am guessing that it might be ISO-8859-7, and use that in
the file header.
- Try to get parallel package handling working again.
Patch from Steinar H. Gunderson. (Closes: #210920)
* Sebastian Ley
- Better error handling of debconf priorities in error cases.
If something goes wrong, lower the debconf priority
(as before), but if things start to go right again, raise
the priority up to the default level.
-- Sebastian Ley <ley@debian.org> Thu, 18 Sep 2003 14:35:02 +0200
main-menu (0.037) unstable; urgency=low
* Bart Cornelis
- updated dutch translation (nl.po)
* Giuseppe Sacco
- Added italian translation (it.po)
* Javier Fernandez-Sanguino:
- Updated Spanish translation (es.po)
* Kenshi Muto
- Added Japanese translation (ja.po)
-- Petter Reinholdtsen <pere@debian.org> Fri, 5 Sep 2003 23:04:38 +0200
main-menu (0.036) unstable; urgency=low
* Petter Reinholdtsen
- Completed the german translation.
-- Petter Reinholdtsen <pere@debian.org> Wed, 30 Jul 2003 15:48:25 +0200
main-menu (0.035) unstable; urgency=low
* Joey Hess
- Removed extra space in stderr output note.
* Petter Reinholdtsen
- Shortened the code by using di_logf() instead of di_log().
- Add some logging to the stderr handler.
- Send SIGUSR1 to cdebconf when a package is installed, to make sure
the debconf database is saved if something goes wrong.
-- Petter Reinholdtsen <pere@debian.org> Mon, 28 Jul 2003 23:26:55 +0200
main-menu (0.034) unstable; urgency=low
* Pierre Machard
- Update fr.po. Thanks to Christian Perrier for proofread
* Florian Lohoff
- Updated de.po. Thanks to from Maximilian Wilhelm.
* Aigars Mahinovs
- Added latvian translation (lv.po)
* Petter Reinholdtsen
- Updated nb.po.
* Sebastian Ley
- Added support for "isinstallable" control scripts in udebs
Works as described in doc/modules.txt
-- Petter Reinholdtsen <pere@debian.org> Sat, 26 Jul 2003 23:53:21 +0200
main-menu (0.033) unstable; urgency=low
* André Luís Lopes
- Run debconf-updatepo in order to feed more translatable string
for translators.
- Update Brazilian Portuguese (pt_BR) debconf template translations.
* Alastair McKinstry
- Convert changelog to UTF-8 for Standards-Version: 3.6.0
-- Alastair McKinstry <mckinstry@computer.org> Sun, 20 Jul 2003 09:58:34 +0100
main-menu (0.032) unstable; urgency=low
* Added stderr redirection, logging, and prettified display.
-- Joey Hess <joeyh@debian.org> Wed, 16 Jul 2003 18:33:30 +0200
main-menu (0.031) unstable; urgency=low
* Bastian Blank
- add "exec" to the udpkg calls, ash isn't able to optimize the fork
away if it should execute only one command
* Joey Hess
- Moved status_read and config_package to libdebian-installer 0.15.
-- Joey Hess <joeyh@debian.org> Wed, 16 Jul 2003 16:46:11 +0200
main-menu (0.030) unstable; urgency=low
* André Luís Lopes :
- Improve the wording of pt_BR translation a bit.
* Thorsten Sauter
- Include german translation (de.po)
* Martin Sjögren
- Recompile with libdebconfclient.
- Apply patch from David Nusinow to add some error handling to the
asprintf calls. (Closes: #193528)
-- Martin Sjogren <sjogren@debian.org> Sat, 17 May 2003 19:45:44 +0200
main-menu (0.029) unstable; urgency=low
* Petter Reinholdtsen
- Remove code to signal cdebconf on language change. It is no longer
needed in cdebconf >= 0.36.
-- Petter Reinholdtsen <pere@debian.org> Sun, 4 May 2003 11:00:28 +0200
main-menu (0.028) unstable; urgency=low
* Petter Reinholdtsen
- Log the menu entry selected, to be able to track what happened
during automatic installation.
-- Petter Reinholdtsen <pere@debian.org> Thu, 17 Apr 2003 00:05:33 +0200
main-menu (0.027) unstable; urgency=low
* Petter Reinholdtsen
- Log the old and new priority when lowering priority.
- Log the name of failing menu items.
- Log the package name and return value when unable to configure it.
-- Petter Reinholdtsen <pere@debian.org> Sat, 12 Apr 2003 11:08:26 +0200
main-menu (0.026) unstable; urgency=low
* Sebastian Ley
- Unset the backup capability by calling debconfs "CAPB" in every loop.
This way only udebs that request backing up explicity will have the
capability set.
* Martin Sjögren
- Briefly turn backup on for the missing-provide question.
* Petter Reinholdtsen
- Rewrite how failing menu entries are handled. Instead of increasing
the main menu priority, lower the debconf priority limit when
something fails.
-- Petter Reinholdtsen <pere@debian.org> Sun, 6 Apr 2003 09:42:15 +0200
main-menu (0.025) unstable; urgency=low
* Make sure language will be updated even when a language chooser is
configured indirectly (Closes: #184346).
-- Martin Sjogren <sjogren@debian.org> Wed, 26 Mar 2003 10:08:03 +0100
main-menu (0.024) unstable; urgency=low
* Petter Reinholdtsen
- Added Norwegian Bokmål and Nynorsk translations recieved from Bjørn
Steensrud and Gaute Hvoslef Kvalnes.
-- Petter Reinholdtsen <pere@debian.org> Tue, 4 Mar 2003 17:00:34 +0100
main-menu (0.023) unstable; urgency=low
* Martin Sjögren
- When a menu item fails, set the menu question's priority to critical so
it will always be displayed. Based on a patch from pere. (Closes: #177723)
- Make sure that the missing provide question has priority critical if
there is no default value to the question.
* Petter Reinholdtsen
- Avoid memory leak in satisfy_virtual().
-- Martin Sjogren <sjogren@debian.org> Sun, 26 Jan 2003 20:29:11 +0100
main-menu (0.022) unstable; urgency=low
* Denis Barbier
- Add support for language selection. Item 10 is by convention
language selection, and when it is called, the LANGUAGE environment
variable is updated as well as debconf backend by sending SIGUSR1
signal to debconf.
* Martin Sjögren
- Use a virtual package (language-selected) instead of i-m-i 10 to
indicate a language has been selected.
- Use di_list_free and di_pkg_free to free package lists.
-- Martin Sjogren <sjogren@debian.org> Mon, 16 Dec 2002 19:49:55 +0100
main-menu (0.021) unstable; urgency=low
* Martin Sjögren
- Make sure the default choice for resolving uninstalled menu items is at
the top
- Fix build-deps (Closes: #172805)
* André Luís Lopes :
- Sync pt_BR template translation with the original english.
-- Martin Sjogren <sjogren@debian.org> Tue, 10 Dec 2002 11:56:55 +0100
main-menu (0.020) unstable; urgency=low
* Martin Sjögren
- Move the toposort stuff to libdebian-installer
-- Martin Sjogren <sjogren@debian.org> Sat, 7 Dec 2002 13:32:07 +0100
main-menu (0.019) unstable; urgency=low
* Martin Sjögren
- Use new linked list stuff and package functions from libdebian-installer3
- Reimplement toposort with new linked list stuff
- Use toposort for the purpose of determining the default choice in the
menu
- Change maintainer to debian-boot and set dwhedon, tfheen and sjogren as
uploaders
-- Tollef Fog Heen <tfheen@debian.org> Thu, 5 Dec 2002 00:55:01 +0100
main-menu (0.018) unstable; urgency=low
* Martin Sjögren
- Updates to debian/po/sv.po
- Don't run udpkg --configure on virtual packages
* Denis Barbier
- Replace "SUBST foo DEFAULT value" by "SET foo value"
* Tollef Fog Heen
- Don't use dpkg-reconfigure, use dpkg --force-configure --configure
instead.
-- Tollef Fog Heen <tfheen@debian.org> Tue, 26 Nov 2002 04:02:00 +0100
main-menu (0.017) unstable; urgency=low
* Martin Sjögren
- Be more intelligent about the default choice when choosing between
several functionality-providing packages.
* Tollef Fog Heen
- Set correct default choice depending on both whether the item wants to
be default and the installer-menu-item number
-- Tollef Fog Heen <tfheen@debian.org> Thu, 14 Nov 2002 01:58:13 +0100
main-menu (0.016) unstable; urgency=low
* Martin Sjögren
- Use libd-i2 with multiple provides
- Update the package_t structures when configuring packages so packages
won't be configured multiple times
* Convert to po-debconf, set Build-Depends: debhelper (>= 4.1.13)
to ensure that generated templates are right, and set output encoding
to UTF-8.
* André Luís Lopes
- Sync pt_BR translation with the original english.
- Set pt_BR.po's fields with right values instead
of the defaults provided.
-- Tollef Fog Heen <tfheen@debian.org> Wed, 6 Nov 2002 02:14:11 +0100
main-menu (0.015) unstable; urgency=low
* Redirect menutests' standard output to /dev/null.
* Martin Sjögren
- When configuring virtual packages, only require one providing package,
and let the user choose which. Note that this will only happen if at
least one of the providing packages is a menu item.
-- Tollef Fog Heen <tfheen@debian.org> Thu, 24 Oct 2002 12:09:45 +0200
main-menu (0.014) unstable; urgency=low
* Add french debconf template (closes: #138522)
* Apply patch from Martin Sjögren to use asprintf.
* Add Swedish debconf template.
* Add Brazilian Portuguese debconf template.
Martin Sjögren
- Use di_pkg_parse from libd-i
-- Tollef Fog Heen <tfheen@debian.org> Fri, 30 Aug 2002 17:09:38 +0200
main-menu (0.013) unstable; urgency=low
* Don't use setlocale any more, this causes problems when strcmping
against a NULL value.
-- Tollef Fog Heen <tfheen@debian.org> Sun, 25 Aug 2002 21:36:45 +0200
main-menu (0.012) unstable; urgency=low
* Build-depend on libcdebconf-dev instead of cdebconf-dev.
* Get rid of emacs changelog variables.
-- Tollef Fog Heen <tfheen@debian.org> Sun, 18 Aug 2002 14:40:28 +0200
main-menu (0.011) unstable; urgency=low
* CFLAGS fix, Closes: #141428
-- Joey Hess <joeyh@debian.org> Sat, 6 Apr 2002 11:40:34 -0500
main-menu (0.010) unstable; urgency=low
* Select a default choice each time.
-- Raphael Hertzog <hertzog@debian.org> Sat, 4 Aug 2001 00:55:04 +0200
main-menu (0.009) unstable; urgency=low
* Use seen flag rather than old isdefault flag. (The isdefault() function
just has an unfortunate name, it is really unconnected with these
flags..)
-- Joey Hess <joeyh@debian.org> Fri, 4 May 2001 18:43:55 -0400
main-menu (0.008) unstable; urgency=low
* Patch from Romain BEAUGRAND <rbeaugrand@easter-eggs.com> to order()
to fix the case of a package with no deps, which is added to the head
of the list. Closes: #95315
-- Joey Hess <joeyh@debian.org> Thu, 3 May 2001 21:12:57 -0400
main-menu (0.007) unstable; urgency=low
* Really allow retrying of failed menu entries.
-- Joey Hess <joeyh@debian.org> Thu, 8 Feb 2001 09:02:57 -0800
main-menu (0.006) unstable; urgency=low
* Allow retrying of failed menu entries, patch from David Whedon.
-- Joey Hess <joeyh@debian.org> Wed, 31 Jan 2001 10:36:53 -0800
main-menu (0.005) unstable; urgency=low
* Now build-depends on debconf-dev, and removed the hack.
* Some other minor changes by others.
-- Joey Hess <joeyh@debian.org> Sun, 21 Jan 2001 19:19:21 -0800
main-menu (0.004) unstable; urgency=low
* Deal with half-configured packages.
-- Joey Hess <joeyh@debian.org> Sun, 31 Dec 2000 15:40:48 -0800
main-menu (0.003) unstable; urgency=low
* Whoops, I missed one.
-- Joey Hess <joey@kitenet.net> Thu, 21 Dec 2000 14:57:11 -0800
main-menu (0.002) unstable; urgency=low
* Derelavatized paths for chroot.
-- Joey Hess <joey@kitenet.net> Thu, 21 Dec 2000 14:23:04 -0800
main-menu (0.001) unstable; urgency=low
* First release. Who knows if this will work, it depends on pools
getting rolled out and working by next dinstall run..
-- Joey Hess <joeyh@debian.org> Thu, 26 Oct 2000 12:02:04 -0700
|