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
|
media-retriever (1.57) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Polish (pl.po) by Matthaiks
-- Holger Wansing <hwansing@mailbox.org> Sun, 07 May 2023 19:14:14 +0200
media-retriever (1.56) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by Wenbin Lv
[ Debian Janitor ]
* Bump debhelper from deprecated 9 to 13.
* Set debhelper-compat version in Build-Depends.
* Remove Priority on load-media that duplicates source.
* Build-Depends-Indep: Drop versioned constraint on dpkg-dev and po-debconf.
-- Holger Wansing <hwansing@mailbox.org> Sun, 29 May 2022 13:44:15 +0200
media-retriever (1.55) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Tamil (ta.po) by Vasudevan Tirumurti
-- Holger Wansing <hwansing@mailbox.org> Sun, 21 Mar 2021 15:17:10 +0100
media-retriever (1.54) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
[ New translations ]
* Kabyle (kab.po) by Slimane Selyan Amiri
* Occitan (oc.po) by Quentin PAGÈS
-- Holger Wansing <hwansing@mailbox.org> Wed, 04 Nov 2020 19:35:51 +0100
media-retriever (1.53) unstable; urgency=medium
* Team upload
[ Updated translations ]
* French (fr.po) by Baptiste Jammet
* Dutch (nl.po) by Frans Spiesschaert
* Polish (pl.po) by Bartosz Feński
-- Holger Wansing <hwansing@mailbox.org> Sun, 20 Sep 2020 22:37:00 +0200
media-retriever (1.52) unstable; urgency=medium
* Team upload
* Fix missing sublevelX declaration in templates file. Includes updating
all po|pot files.
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
-- Holger Wansing <hwansing@mailbox.org> Tue, 28 Jan 2020 22:18:01 +0100
media-retriever (1.51) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927523)
[ Holger Wansing ]
* Add comment for translators, to keep main menu entry below a 55 columns
limit. This updates all po|pot files.
[ Updated translations ]
* Croatian (hr.po) by gogogogi
* Traditional Chinese (zh_TW.po) by Walter Cheuk
-- Holger Wansing <hwansing@mailbox.org> Fri, 18 Oct 2019 23:05:08 +0200
media-retriever (1.50) 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:48:55 +0100
media-retriever (1.49) unstable; urgency=medium
* Team upload
* Replace deprecated priority extra by optional.
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Updated translations ]
* Finnish (fi.po) by Juhani Numminen
* Hebrew (he.po) by Yaron Shahrabani
-- Holger Wansing <hwansing@mailbox.org> Sat, 09 Feb 2019 22:22:04 +0100
media-retriever (1.48) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Finnish (fi.po) by Arto Keiski
* Marathi (mr.po) by Nayan Nakhare
-- Holger Wansing <hwansing@mailbox.org> Thu, 01 Nov 2018 14:52:53 +0100
media-retriever (1.47) 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
* Telugu (te.po) by Praveen Illa
-- Holger Wansing <hwansing@mailbox.org> Sun, 12 Aug 2018 10:28:56 +0200
media-retriever (1.46) unstable; urgency=medium
[ Updated translations ]
* Indonesian (id.po) by Andika Triwidada
-- Christian Perrier <bubulle@debian.org> Mon, 02 Apr 2018 10:20:37 +0200
media-retriever (1.45) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Fri, 16 Feb 2018 06:50:55 +0100
media-retriever (1.44) unstable; urgency=medium
[ Updated translations ]
* Persian (fa.po) by nima sahraneshin
-- Christian Perrier <bubulle@debian.org> Fri, 02 Feb 2018 06:56:46 +0100
media-retriever (1.43) unstable; urgency=medium
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
* Bokmål, Norwegian (nb.po) by Alexander Jansen
* Panjabi (pa.po) by Aman ALam
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jan 2018 10:18:57 +0100
media-retriever (1.42) unstable; urgency=medium
[ Updated translations ]
* Nepali (ne.po) by Jeewal Kunwar
-- Christian Perrier <bubulle@debian.org> Sat, 30 Dec 2017 16:14:46 +0100
media-retriever (1.41) unstable; urgency=medium
[ Updated translations ]
* Lithuanian (lt.po) by Rimas Kudelis
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
-- Christian Perrier <bubulle@debian.org> Thu, 30 Nov 2017 21:23:08 +0100
media-retriever (1.40) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Mon, 15 Aug 2016 09:20:16 +0200
media-retriever (1.39) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Sun, 14 Feb 2016 15:51:21 +0100
media-retriever (1.38) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 25 Jul 2015 21:52:05 +0200
media-retriever (1.37) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Thu, 25 Jun 2015 15:04:42 +0200
media-retriever (1.36) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
-- Christian Perrier <bubulle@debian.org> Mon, 12 Jan 2015 07:12:07 +0100
media-retriever (1.35) unstable; urgency=low
[ Updated translations ]
* German (de.po) by Holger Wansing
* Estonian (et.po) by Mattias Põldaru
-- Christian Perrier <bubulle@debian.org> Mon, 15 Sep 2014 11:42:32 +0200
media-retriever (1.34) 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:59:51 +0100
media-retriever (1.33) 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 09:56:26 +0100
media-retriever (1.32) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 14 Sep 2013 15:24:42 +0200
media-retriever (1.31) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sun, 08 Sep 2013 15:54:22 +0200
media-retriever (1.30) 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 14:34:44 +0200
media-retriever (1.29) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Fri, 17 May 2013 22:10:00 +0200
media-retriever (1.28) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Tue, 11 Dec 2012 19:51:31 +0100
media-retriever (1.27) unstable; urgency=low
* Replace XC-Package-Type by Package-Type in debian/control
[ Updated translations ]
* Asturian (ast.po) by ivarela
-- Christian Perrier <bubulle@debian.org> Mon, 15 Oct 2012 08:29:51 +0200
media-retriever (1.26) unstable; urgency=low
* Team upload
[ Updated translations ]
* Tibetan (bo.po) by Tennom
* Welsh (cy.po) by Dafydd Tomos
* Galician (gl.po) by Jorge Barreiro
* 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
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 11:41:33 +0200
media-retriever (1.25) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* German (de.po) by Holger Wansing
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po)
* 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
* Kannada (kn.po) by Prabodh C P
* Macedonian (mk.po) by Arangel Angov
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po)
* Ukrainian (uk.po) by Borys Yanovych
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Thu, 15 Mar 2012 14:49:29 -0300
media-retriever (1.24) unstable; urgency=low
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Korean (ko.po) by Changwoo Ryu
* Romanian (ro.po) by Eddy Petrișor
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Uyghur (ug.po) by Sahran
-- Christian Perrier <bubulle@debian.org> Sat, 23 Apr 2011 11:21:56 +0200
media-retriever (1.23) unstable; urgency=low
[ Updated translations ]
* Lao (lo.po) by Anousak Souphavanh
* Northern Sami (se.po) by Børre Gaup
* Sinhala (si.po) by Danishka Navin
* Slovenian (sl.po) by Vanja Cvelbar
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 20:05:06 -0200
media-retriever (1.22) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Israt Jahan
* Bosnian (bs.po) by Armin Beširović
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by Ebrahim Byagowi
* Icelandic (is.po) by Sveinn í Felli
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Dutch (nl.po) by Eric Spreen
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 16:11:12 -0200
media-retriever (1.21) unstable; urgency=low
[ Colin Watson ]
* Upgrade to debhelper v7.
[ Frans Pop ]
* Remove no longer needed Lintian override for missing Standards-
Version field.
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Asturian (ast.po) by astur
* Belarusian (be.po) by Viktar Siarheichyk
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* Estonian (et.po) by Mattias Põldaru
* Persian (fa.po) by acathur
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Marce Villarino
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* 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
* Macedonian (mk.po) by Arangel Angov
* Marathi (mr.po) by Sampada
* Nepali (ne.po)
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by ioan-eugen stan
* Slovenian (sl.po) by Vanja Cvelbar
* Simplified Chinese (zh_CN.po) by 苏运强
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 17:10:26 +0200
media-retriever (1.20) unstable; urgency=low
[ Frans Pop ]
* Remove myself as uploader.
[ Christian Perrier ]
* Bump debhelper compatibility level to 6
* Add myself as uploader
[ Updated translations ]
* Asturian (ast.po) by Marcos Alvarez Costales
* Bengali (bn.po) by Md. Rezwan Shahid
* German (de.po) by Holger Wansing
* Esperanto (eo.po) by Felipe Castro
* 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
* Kazakh (kk.po) by daur88
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Slovak (sk.po) by Ivan Masár
* Tagalog (tl.po) by Eric Pareja
-- Christian Perrier <bubulle@debian.org> Sun, 14 Jun 2009 19:34:59 +0200
media-retriever (1.19) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Bosnian (bs.po) by Armin Besirovic
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Welsh (cy.po) by Jonathan Price
* Danish (da.po)
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
* Greek, Modern (1453-) (el.po)
* Esperanto (eo.po) by Felipe Castro
* 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
* Hebrew (he.po) by Omer Zak
* 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
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Georgian (ka.po) by Aiet Kolkhi
* Central Khmer (km.po) by KHOEM Sokhem
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Amed Çeko Jiyan
* 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|പ്രവീണണ് A|എ
* Marathi (mr.po) by Sampada
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Nepali (ne.po) by Shiva Prasad Pokharel
* 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
* 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
* Slovenian (sl.po) by Vanja Cvelbar
* Albanian (sq.po) by Elian Myftiu
* Serbian (sr.po) by Veselin Mijušković
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Borys Yanovych
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Deng Xiyue
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 19:18:32 -0300
media-retriever (1.18) unstable; urgency=low
[ Frans Pop ]
* Remove Martin Sjogren as Uploader with many thanks for his past
contributions.
[ Joey Hess ]
* Pass "driver" to mountfloppy to let it know that we're looking for a
driver floppy.
* Use the new mountmedia command instead of mountfloppy.
* Since mountmedia can find drivers on other media than floppies,
the package name is no longer accurate. Rename it.
* Change floppy-specific strings, etc too.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Finnish (fi.po) by Esko Arajärvi
* Hungarian (hu.po) by SZERVÁC Attila
* Marathi (mr.po) by Sampada
* Panjabi (pa.po) by Amanpreet Singh Alam
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Joey Hess <joeyh@debian.org> Tue, 24 Jun 2008 02:36:22 -0400
floppy-retriever (1.17) unstable; urgency=low
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Belarusian (be.po) by Hleb Rubanau
* Finnish (fi.po) by Esko Arajärvi
* French (fr.po) by Christian Perrier
* Indonesian (id.po) by Arief S Fitrianto
* Korean (ko.po) by Changwoo Ryu
* Latvian (lv.po) by Viesturs Zarins
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Slovak (sk.po) by Ivan Masár
* Turkish (tr.po) by Recai Oktaş
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 08:13:10 -0200
floppy-retriever (1.16) unstable; urgency=low
[ Jérémy Bobbio ]
* Clean up devfs-style device names in load-floppy.postinst.
[ Updated translations ]
* Bengali (bn.po) by Jamil Ahmed
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Claus Hindsgaul
* Italian (it.po) by Stefano Canepa
* Romanian (ro.po) by Eddy Petrișor
* Vietnamese (vi.po) by Clytie Siddall
-- Jérémy Bobbio <lunar@debian.org> Thu, 27 Sep 2007 18:31:36 +0200
floppy-retriever (1.15) unstable; urgency=low
* Multiply menu-item-numbers by 100
[ Updated translations ]
* Tamil (ta.po) by Dr.T.Vasudevan
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:41:15 -0400
floppy-retriever (1.14) unstable; urgency=low
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
* Malayalam (ml.po) by Praveen A
* Dutch (nl.po) by Bart Cornelis
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:48:02 +0100
floppy-retriever (1.13) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Danish (da.po) by Claus Hindsgaul
* French (fr.po) by Christian Perrier
* 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)
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:34:29 +0100
floppy-retriever (1.12) unstable; urgency=low
[ Sylvain Ferriol ]
* Remove a hack used to avoid a kernel bug with mount command.
Replaced by workaround in mountfloppy 0.9.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivaniv
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Estonian (et.po) by Siim Põder
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Erdal Ronahi
* 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
* Polish (pl.po) by Bartosz Fenski
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Sat, 9 Dec 2006 17:57:04 +0100
floppy-retriever (1.11) unstable; urgency=low
[ Joey Hess ]
* Unbranding.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Andrei Darashenka
* Bengali (bn.po) by Jamil Ahmed
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay
* Greek, Modern (1453-) (el.po) by QUAD-nrg.net
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Nepali (ne.po) by Shiva Prasad Pokharel
* 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 Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Damodharan Rajalingam
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Ming Hua
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 14:53:36 +0200
floppy-retriever (1.10) unstable; urgency=low
[ Sylvain Ferriol ]
* Support loading from multiple floppies or floppy sets.
* Make load-floppy verify the order of floppies by reading the disk number.
[ Frans Pop ]
* Add missing debconf dependencies.
* Add Lintian override for standards-version.
* Add myself as uploader.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* 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
* Icelandic (is.po) by David Steinn Geirsson
* Latvian (lv.po) by Aigars Mahinovs
* Panjabi (pa.po) by A S Alam
* Northern Sami (se.po) by Børre Gaup
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Fri, 13 Oct 2006 03:50:40 +0200
floppy-retriever (1.09) unstable; urgency=low
[ Colin Watson ]
* Put debhelper in Build-Depends rather than in Build-Depends-Indep.
[ 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
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Irish (ga.po) by Kevin Patrick Scannell
* Gujarati (gu.po) by Kartik Mistry
* 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
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Nepali (ne.po) by Shiva Pokharel
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Portuguese (pt.po) by Miguel Figueiredo
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Thu, 13 Jul 2006 17:27:59 +0200
floppy-retriever (1.08) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bengali (bn.po) by Baishampayan Ghose
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* Esperanto (eo.po) by Serge Leblanc
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hindi (hi.po) by Nishant Sharma
* Icelandic (is.po) by David Steinn Geirsson
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Norwegian Nynorsk (nn.po)
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovenian (sl.po) by Jure Čuhalev
* Swedish (sv.po) by Daniel Nylander
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Mon, 23 Jan 2006 20:34:46 +0100
floppy-retriever (1.07) unstable; urgency=low
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Estonian (et.po) by Siim Põder
- Basque (eu.po) by Piarres Beobide
- Hebrew (he.po) by Lior Kaplan
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrişor
- Slovak (sk.po) by Peter Mann
- Tagalog (tl.po) by Eric Pareja
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Vietnamese (vi.po) by Clytie Siddall
- Wolof (wo.po) by Mouhamadou Mamoune Mbacke
- Xhosa (xh.po) by Canonical Ltd
-- Joey Hess <joeyh@debian.org> Fri, 15 Jul 2005 17:09:00 +0300
floppy-retriever (1.06) unstable; urgency=low
* Joey Hess
- mountfloppy has moved to the udeb of the same name; floppy-retriever
now depends on it
* 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 Guillem Jover
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Herbert Straub
- Greek, Modern (1453-) (el.po) by Kostas Papadimas
- Spanish (es.po) by Enrique Matias Sanchez
- 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
- Italian (it.po) by Stefano Canepa
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Polish (pl.po) by Dominik Zablotny
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Ovidiu Damian
- Russian (ru.po) by Yuri Kozlov
- 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ş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Fri, 6 May 2005 14:14:28 -0400
floppy-retriever (1.05) unstable; urgency=low
* Colin Watson
- Move templates to floppy-retriever.templates for clarity in .pot
files.
* Includes fixes for variable substitution in translated templates.
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Gallegan (gl.po) by Hctor Fenndez Lpez
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Dutch (nl.po) by Bart Cornelis
- Portuguese (pt.po) by Miguel Figueiredo
- Romanian (ro.po) by Eddy Petrisor
-- Joey Hess <joeyh@debian.org> Wed, 2 Feb 2005 17:49:19 -0500
floppy-retriever (1.04) unstable; urgency=low
* Source confmodule in mountfloppy so prompt for usb floppy devices can work.
Closes: #280519
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Russian (ru.po) by Russian L10N Team
-- Joey Hess <joeyh@debian.org> Mon, 15 Nov 2004 12:57:47 -0500
floppy-retriever (1.03) 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
- Dutch (nl.po) by Bart Cornelis
- 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:35:11 -0400
floppy-retriever (1.02) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Lithuanian (lt.po) by KÄstutis BiliÅ«nasn
- Bøkmal, Norwegian (nb.po) by Axel Bojer
- Portuguese (Brazil) (pt_BR.po) by André LuÃs Lopes
- Swedish (sv.po) by Per Olofsson
-- Joey Hess <joeyh@debian.org> Mon, 27 Sep 2004 21:34:19 -0400
floppy-retriever (1.01) unstable; urgency=low
* Joey Hess
- Broke moutfloppy out into a standalone program so other things
(preseeding) can use it.
* 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
- 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
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by KÄstutis BiliÅ«nas
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by HÃ¥vard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Russian (ru.po) by Russian L10N Team
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Äuhalev
- Turkish (tr.po) by Recai OktaÅ
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Wed, 15 Sep 2004 14:04:43 -0400
floppy-retriever (1.00) unstable; urgency=low
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Danish (da.po) by Frederik Dannemare
- Persian (fa.po) by Arash Bijanzadeh
- Croatian (hr.po) by Kruno
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Sun, 25 Jul 2004 19:26:02 -0400
floppy-retriever (0.34) unstable; urgency=low
* Joey Hess
- Make the error handler ask the retry question at critical priority,
and don't retry if the question is still not shown; that caused an ugly
loop.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Welsh (cy.po) by Dafydd Harries
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Fri, 25 Jun 2004 22:26:11 -0400
floppy-retriever (0.33) unstable; urgency=low
* Re-upload sans changes.
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 15:28:15 -0300
floppy-retriever (0.32) unstable; urgency=low
* Updated translations:
- Spanish (Castilian) (es.po) by David Martínez Moreno
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 12:42:48 -0300
floppy-retriever (0.31) unstable; urgency=low
* This package does not depend on eject-udeb.
-- Joey Hess <joeyh@debian.org> Sun, 25 Apr 2004 11:27:28 -0400
floppy-retriever (0.30) unstable; urgency=low
* Joshua Kwan
- Force a silent eject of /dev/floppy/0 in load-floppy.postinst to
avoid having to manually eject the floppy from the drive. It's OK
if it does not work. (Closes: #240126)
- re-UTF8ize changelog
-- Joshua Kwan <joshk@triplehelix.org> Fri, 23 Apr 2004 19:11:31 -0700
floppy-retriever (0.29) 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
- Slovenian (sl.po) by Jure Äuhalev
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 13:21:55 -0400
floppy-retriever (0.28) unstable; urgency=low
* Sylvain Ferriol
- Add rm in cleanup command, and now it works ;)
* Updated translations:
- Bosnian (bs.po) by Safir Å eÄeroviÄ
- Catalan (ca.po) by Jordi Mallach
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Finnish (fi.po) by Tapio Lehtonen
- Gallegan (gl.po) by Héctor Fernández López
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Italian (it.po) by Giuseppe Sacco
- Norwegian Nynorsk (nn.po) by HÃ¥vard Korsvoll
- Romanian (ro.po) by Eddy Petrisor
-- Joey Hess <joeyh@debian.org> Tue, 20 Apr 2004 11:12:08 -0400
floppy-retriever (0.27) unstable; urgency=low
* Updated translations:
- German (de.po) by Dennis Stampfer
- Basque (eu.po) by Piarres Beobide Egaña
- Dutch (nl.po) by Bart Cornelis
- Russian (ru.po) by Nikolai Prokoschenko
- Slovak (sk.po) by Peter KLFMANiK Mann
- Swedish (sv.po) by André Dahlqvist
- Turkish (tr.po) by Osman Yüksel
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Mon, 12 Apr 2004 23:24:39 -0400
floppy-retriever (0.26) unstable; urgency=low
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- French (fr.po) by Pierre Machard
- 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
- Slovak (sk.po) by Peter KLFMANiK Mann
- Albanian (sq.po) by Elian Myftiu
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by bbbush
-- Joey Hess <joeyh@debian.org> Sat, 10 Apr 2004 00:46:31 -0400
floppy-retriever (0.25) unstable; urgency=low
* Joey Hess
- Clarify the floppy prompt so the user knows to insert the floppy before
proceeding.
- Always show te question, even in expert mode.
- Stop touching the seen flag.
- Add an error command to the floppy retreiver.
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- Basque (eu.po) by Piarres Beobide Egaña
- French (fr.po) by Pierre Machard
- 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
- Slovak (sk.po) by Peter KLFMANiK Mann
- Albanian (sq.po) by Elian Myftiu
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by bbbush
-- Joey Hess <joeyh@debian.org> Wed, 7 Apr 2004 19:54:34 -0400
floppy-retriever (0.24) unstable; urgency=low
* 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 15:24:44 -0500
floppy-retriever (0.23) unstable; urgency=low
* Menu item number moved from 13 to 11, so it will run before countrychooser
(if countrychooser is not on the root floppy). This allows offloading
countrychooser to other floppys to save space.
-- Joey Hess <joeyh@debian.org> Tue, 16 Mar 2004 12:41:22 -0500
floppy-retriever (0.22) unstable; urgency=low
* Translations:
- KÄstutis BiliÅ«nas: Updated Lithuanian translation (lt.po)
-- Joey Hess <joeyh@debian.org> Sat, 13 Mar 2004 00:09:45 -0500
floppy-retriever (0.21) unstable; urgency=low
* Joey Hess
- Set priority of all packages on a floppy to standard. If they're on
the floppy, we probably want them all. For example, on the cd-drivers
floppy, we want load-cdrom (extra)..
* Translations
- HÃ¥vard Korsvoll
- Updated Norwegian, nynorsk translation (nn.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, bokmål translation, (nb.po). From Axel Bojer
- Dafydd Harries : Added Welsh translation (cy.po)
-- Joey Hess <joeyh@debian.org> Wed, 10 Mar 2004 22:05:38 -0500
floppy-retriever (0.20) unstable; urgency=low
* Joey Hess
- Update to debhelper v4 and use its new udeb support.
* Translations:
- Changwoo Ryu
- Updated Korean translation (ko.po)
-- Joey Hess <joeyh@debian.org> Fri, 13 Feb 2004 13:24:50 -0500
floppy-retriever (0.19) unstable; urgency=low
* Joey Hess
- Remove load-floppy-late, it won't work given the current limitiations of
main-menu.
* Eugen Meshcheryakov
- added Ukrainian translation (uk.po)
-- Christian Perrier <bubulle@debian.org> Sun, 8 Feb 2004 20:26:36 +0100
floppy-retriever (0.18) unstable; urgency=low
* Joey Hess
- Add load-floppy-late udeb, which exists just to be on the menu item
after things like load-cdrom.
* Translations:
- Jordi Mallach
- Update Catalan translation (ca.po).
- Carlos Z.F. Liu
- fix some serious errors in Simplified Chinese translation.
- h3lios
- Added Albanian translation (sq.po)
-- Joey Hess <joeyh@debian.org> Thu, 5 Feb 2004 00:16:41 -0500
floppy-retriever (0.17) unstable; urgency=low
* Nikolai Prokoschenko
- Updated russian translation (ru.po)
* Christian Perrier
- Updated French translation after an instalaltion report (fr.po)
* Safir Secerovic
- Update Bosnian translation (bs.po).
-- Joey Hess <joeyh@debian.org> Thu, 22 Jan 2004 19:55:48 -0500
floppy-retriever (0.16) unstable; urgency=low
* Ming Hua
- Initial Simplified Chinese translation (zh_CN.po)
* Bart Cornelis
- Merged Norwegian Nynorsk (nn.po) translation from skolelinux-cvs
* Anmar Oueja
- created and translated Arabic (ar.po)
-- Joey Hess <joeyh@debian.org> Thu, 1 Jan 2004 14:30:05 -0500
floppy-retriever (0.15) unstable; urgency=low
* Bart Cornelis
- Merged Norwegian Bokmael (nb.po) translation from skolelinux-cvs
* Peter Mann
- Updated Slovak translation
-- Joey Hess <joeyh@debian.org> Thu, 25 Dec 2003 19:18:47 -0500
floppy-retriever (0.14) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Verok Istvan
- Initial Hungarian translation.
* Bart Cornelis
- Updated Dutch translation (nl.po)
* Giuseppe Sacco
- Updated italian translation
* Teófilo Ruiz Suárez
- Updated Spanish Translation
- Switched to utf-8
* André Dahlqvist
- Update Swedish translation. (sv.po)
* David MartÃnez Moreno
- Updated Spanish Translation (es.po).
* Changwoo Ryu
- Initial Korean translation.
* Konstantinos Margaritis
- Updated Greek translation (el.po)
* Peter Mann
- Updated Slovak translation. (sk.po)
* KÄstutis BiliÅ«nas
- Updated Lithuanian translation (lt.po).
* Steinar H. Gunderson
- Updated Norwegian translation (nb.po).
* Miguel Figueiredo
- Updated Portuguese translation (pt.po).
* Ognyan Kulev
- Added/updated bulgarian translation (bg.po).
* Joey Hess
- Fix load-floppy to exit 10, not 30, on backup.
* Jure Cuhalev
- Added/updated slovenian translation (sl.po).
-- Joey Hess <joeyh@debian.org> Mon, 22 Dec 2003 14:43:45 -0500
floppy-retriever (0.13) unstable; urgency=low
* André LuÃs Lopes
- Added load-floppy.templates into debian/po/POTFILES.in and ran
debconf-update in order to feed an additional main-maneu entry to
translators. Thanks Matt Kraai for adding the entry.
- Update pt_BR (Brazilian Portuguese) translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* Miroslav Kure
- Update Czech translation.
* Pierre Machard, Christian Perrier
- Update French translation.
* Bart Cornelis
- Updated Dutch translations (nl.po)
* Claus Hindsgaul
- Update Danish translation (da.po).
* Tommi Vainikainen
- Update Finnish translation.
* Ilgiz Kalmetev
- Update Russian translation. (ru.po).
* Matt Kraai
- Add a main-menu entry.
* Konstantinos Margaritis
- Initial Greek translation (el.po)
* Dennis Stampfer
- Updated German translation (de.po)
* Safir Å eÄeroviÄ
- Updated Bosnian translation (bs.po).
-- Joey Hess <joeyh@debian.org> Tue, 9 Dec 2003 15:34:10 -0500
floppy-retriever (0.12) unstable; urgency=low
* Peter Mann
- Initial Slovak translation (sk.po).
* Joey Hess
- If no floppy device can be found, prompt the user with a list of
possible floppy devices.
- Stop using INSTALL_MEDIA_DEV, that could be a USB keychain and
not a floppy. Since there is no way to know, manually asking is
the best option.
-- Joey Hess <joeyh@debian.org> Mon, 3 Nov 2003 11:50:32 -0500
floppy-retriever (0.11) unstable; urgency=low
* Joey Hess
- clean up the rules file
* Ilgiz Kalmetev
- Updated Russian translation. Closes: #219091.
-- Joey Hess <joeyh@debian.org> Mon, 3 Nov 2003 11:40:32 -0500
floppy-retriever (0.10) unstable; urgency=low
* Safir Secerovic, Amila Akagic
- Add Bosnian translation (bs.po).
* Claus Hindsgaul
- Update Danish translation (da.po).
* Added a load-floppy udeb that provides a menu item to use the
floppy retreiver, now that anna is off the menu. (Requires quite a lot
of reorganisation elsewhere.)
* Make it come just after languagechooser in the menu.
* Make it priority extra, because it will only be useful on the floppy.
* Remove Standards-Version field.
* Add a question asking whether to load a floppy now, displayed only at
> medium priority, when floppy-load might be autoselected.
* Don't die if modprobe vfat fails. It might be in the kernel.
-- Joey Hess <joeyh@debian.org> Sat, 1 Nov 2003 20:56:00 -0500
floppy-retriever (0.09) unstable; urgency=low
* André LuÃs Lopes
- Updated pt_BR (Brazilian Portuguese) translation.
* Kenshi Muto
- Update Japanese translation (ja.po).
* Christian Perrier
- Update French translation.
* Bart Cornelis
- updated dutch translation (nl.po)
* Tommi Vainikainen
- Add Finnish (fi.po) translation
* Miroslav Kure
- Update Czech translation (cs.po).
* KÄstutis BiliÅ«nas
- Update Lithuanian translation (lt.po).
-- Petter Reinholdtsen <pere@debian.org> Fri, 24 Oct 2003 17:23:10 +0200
floppy-retriever (0.08) unstable; urgency=low
* Jure Cuhalev
- Add Slovenian translation (sl.po). Closes: #215420.
* KÄstutis BiliÅ«nas
- Add Lithuanian translation (lt.po).
* Claus Hindsgaul
- Add Danish translation (da.po).
* Joey Hess
- Add a progress bar to the packages scan as even this can take some time
to complete.
- Support USB floppies: If INSTALL_MEDIA_DEV is set, it was passed
from the linuxrc on the boot floppy, and points to the device the
initrd was loaded from. Or the user can set it at boot.
- This also allows something saner than "first floppy drive" in the
prompt.
- When scanning for packages, exit 1 if no files were found. Must not be a
driver floppy then.
-- Alastair McKinstry <mckinstry@debian.org> Sun, 12 Oct 2003 22:27:31 +0100
floppy-retriever (0.07) unstable; urgency=low
* Kenshi Muto
- Added Japanese translation (ja.po)
- Update ja.po
* Teófilo Ruiz Suárez
- Revised Spanish traslation (es.po)
* Jordi Mallach
- Added Catalan (ca) translation.
* Alastair McKinstry
- Convert changelog to UTF-8 as per policy
* Ilgiz Kalmetev
- Initial Russian translation. Closes: #214348.
* Miroslav Kure
- Initial Czech translation.
-- Petter Reinholdtsen <pere@debian.org> Sun, 12 Oct 2003 19:34:11 +0200
floppy-retriever (0.06) unstable; urgency=low
* Petter Reinholdtsen
- Updated nb.po.
* Thorsten Sauter
- Include German translation (de.po)
* Pierre Machard
- Update French translation (fr.po)
* Bart Cornelis
- Include Dutch translation (nl.po)
* Martin Sjögren
- Implement the "packages" command which downloads and parses the
Release file.
- Get rid of the "file system type" question.
* Giuseppe Sacco
- Added italian translation (it.po)
-- Alastair McKinstry <mckinstry@computer.org> Sat, 19 Jul 2003 14:33:14 +0100
floppy-retriever (0.05) unstable; urgency=low
* Pierre Machard
- Update fr (French) template translation.
* Carlos Valdivia Yague
- Translate to Spanish.
* Petter Reinholdtsen
- Stop using lsmod, read from /proc/modules instead. (Closes: #190644)
* Martin Sjögren
- Restructure the questions for file system on the floppy.
- Search for *.ude files in addition to *.deb and *.udeb.
* André LuÃs Lopes :
- Run debconf-updatepo in order to feed newer translatable
strings to translation files.
- Update pt_BR debconf template translation.
* Petter Reinholdtsen
- Add Norwegian Bokmål (nb.po) and Nynorsk translation (nn.po).
-- Martin Sjogren <sjogren@debian.org> Sun, 4 May 2003 16:14:17 +0200
floppy-retriever (0.04) unstable; urgency=low
* André LuÃs Lopes :
- Added pt_BR (Brazilian Portuguese) template translation.
- Updated pt_BR template translation.
* Christian Perrier
- Added French template translation.
* Martin Sjögren
- Always use /dev/floppy/0. /dev/floppy/1 will be present even if
there is only one floppy drive. Change the floppy/device question
to a note about inserting the floppy.
- Update Swedish translation
-- Martin Sjogren <sjogren@debian.org> Fri, 4 Apr 2003 09:36:09 +0200
floppy-retriever (0.03) unstable; urgency=low
* Martin Sjögren
- Ask both debconf questions in the same "go".
- Use po-debconf
- Add Swedish translation
* Petter Reinholdtsen
- Add debian/po/output to make sure the templates are in UTF-8.
- I believe UTF-8 templates using po-debconf need debhelper >= 4.1.16
and po-debconf >= 0.5.0. Adjust build-depend.
-- Martin Sjogren <sjogren@debian.org> Thu, 13 Feb 2003 10:12:06 +0100
floppy-retriever (0.02) unstable; urgency=low
* Martin Sjögren
- Improve the description
- Set priority to optional
-- Martin Sjogren <sjogren@debian.org> Thu, 12 Dec 2002 10:58:36 +0100
floppy-retriever (0.01) unstable; urgency=low
* Initial version.
-- Martin Sjogren <sjogren@debian.org> Tue, 31 Jul 2001 17:46:30 +0200
|