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
|
nobootloader (1.67) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Irish (ga.po) by Kevin Scannell
* Norwegian Nynorsk (nn.po) by Yngve Spjeld-Landro
-- Holger Wansing <hwansing@mailbox.org> Tue, 23 May 2023 20:12:20 +0200
nobootloader (1.66) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Norwegian Nynorsk (nn.po) by Kjetil Sørlund
-- Holger Wansing <hwansing@mailbox.org> Sun, 07 May 2023 19:23:57 +0200
nobootloader (1.65) unstable; urgency=medium
* Team upload
* Remove Stephen R. Marenka from Uploaders. (Closes: #1012371)
[ Updated translations ]
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Mon, 18 Jul 2022 14:34:32 +0200
nobootloader (1.64) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Croatian (hr.po) by Milo Ivir
* Dutch (nl.po) by Frans Spiesschaert
* Simplified Chinese (zh_CN.po) by Wenbin Lv
[ Debian Janitor ]
* Add missing ${misc:Depends} to Depends for nobootloader.
* Bump debhelper from deprecated 9 to 13.
* Set debhelper-compat version in Build-Depends.
-- Holger Wansing <hwansing@mailbox.org> Sat, 28 May 2022 16:55:20 +0200
nobootloader (1.63) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by Fahim Sabah
-- Holger Wansing <hwansing@mailbox.org> Sun, 30 May 2021 23:18:00 +0200
nobootloader (1.62) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Catalan (ca.po) by d
* Occitan (oc.po) by Quentin PAGÈS
* Tamil (ta.po) by Vasudevan Tirumurti
-- Holger Wansing <hwansing@mailbox.org> Sat, 13 Mar 2021 18:54:00 +0100
nobootloader (1.61) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Greek (el.po) by Vangelis Skarmoutsos
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Persian (fa.po) by سهیل خانعلیپور
[ 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:44:59 +0100
nobootloader (1.60) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Estonian (et.po) by Kristjan Räts
* Hindi (hi.po) by Sanket Pardhi
* Swedish (sv.po) by Anders Jonsson
-- Holger Wansing <hwansing@mailbox.org> Sun, 20 Sep 2020 22:42:11 +0200
nobootloader (1.59) unstable; urgency=medium
* Team upload
[ Updated translations ]
* German (de.po) by Holger Wansing
* Hebrew (he.po) by Yaron Shahrabani
-- Holger Wansing <hwansing@mailbox.org> Sun, 10 May 2020 21:31:54 +0200
nobootloader (1.58) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Tibetan (bo.po)
* Hebrew (he.po) by Yaron Shahrabani
* Marathi (mr.po) by Prachi Joshi
-- Holger Wansing <hwansing@mailbox.org> Fri, 31 Jan 2020 23:14:45 +0100
nobootloader (1.57) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927508)
[ 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
* Portuguese (pt.po) by Miguel Figueiredo
-- Holger Wansing <hwansing@mailbox.org> Sun, 13 Oct 2019 21:50:03 +0200
nobootloader (1.56) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Indonesian (id.po) by Muhammad Rifqi Priyo Susanto
-- Holger Wansing <hwansing@mailbox.org> Sun, 24 Mar 2019 19:21:40 +0100
nobootloader (1.55) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by Yaron Shahrabani
* Hebrew (he.po) by Yaron Shahrabani
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Sun, 03 Mar 2019 12:59:01 +0100
nobootloader (1.54) unstable; urgency=medium
* Team upload
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Updated translations ]
* Kazakh (kk.po) by Baurzhan Muftakhidinov
-- Holger Wansing <hwansing@mailbox.org> Sun, 10 Feb 2019 11:34:13 +0100
nobootloader (1.53) 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 11:12:13 +0200
nobootloader (1.52) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
-- Christian Perrier <bubulle@debian.org> Tue, 03 Apr 2018 18:19:21 +0200
nobootloader (1.51) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 17 Feb 2018 08:13:20 +0100
nobootloader (1.50) unstable; urgency=medium
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Mon, 22 Jan 2018 08:36:43 +0100
nobootloader (1.49) unstable; urgency=medium
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jan 2018 16:38:19 +0100
nobootloader (1.48) 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:38:51 +0100
nobootloader (1.47) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Thu, 11 Feb 2016 19:09:33 +0100
nobootloader (1.46) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 25 Jul 2015 22:00:01 +0200
nobootloader (1.45) unstable; urgency=low
[ Milan Kupcevic ]
* Run update-initramfs to include reduced set of modules, thus reduce
vmlinuz size. (Closes: #782279)
-- Christian Perrier <bubulle@debian.org> Sat, 11 Apr 2015 08:20:18 +0200
nobootloader (1.44) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 20 Sep 2014 12:40:53 +0200
nobootloader (1.43) unstable; urgency=low
[ Updated translations ]
* Bosnian (bs.po) by Amila Valjevčić
-- Christian Perrier <bubulle@debian.org> Tue, 17 Dec 2013 12:16:49 +0100
nobootloader (1.42) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 09 Nov 2013 19:28:50 +0100
nobootloader (1.41) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sun, 08 Sep 2013 16:00:16 +0200
nobootloader (1.40) 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:22:02 +0200
nobootloader (1.39) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Fri, 17 May 2013 22:24:12 +0200
nobootloader (1.38) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Tue, 11 Dec 2012 22:02:32 +0100
nobootloader (1.37) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by ivarela
-- Christian Perrier <bubulle@debian.org> Mon, 15 Oct 2012 09:18:06 +0200
nobootloader (1.36) unstable; urgency=low
[ Updated translations ]
* Lithuanian (lt.po) by Rimas Kudelis
-- Christian Perrier <bubulle@debian.org> Sun, 23 Sep 2012 08:24:03 +0200
nobootloader (1.35) unstable; urgency=low
[ Milan Kupcevic ]
* Do not assume Linux kernel version is 2.*
* Use symlink 'vmlinuz' instead of full kernel name.
* Fallback to factory default HD firmware alias, not to <unknown device>
[ Christian Perrier ]
* Add myself to Uploaders
-- Christian Perrier <bubulle@debian.org> Sun, 05 Aug 2012 12:32:15 +0200
nobootloader (1.34) unstable; urgency=low
* Team upload
[ Updated translations ]
* Galician (gl.po) by Jorge Barreiro
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Fri, 22 Jun 2012 06:47:28 +0200
nobootloader (1.33) unstable; urgency=low
* Team upload
* Replace XC-Package-Type by Package-Type
[ Updated translations ]
* Tibetan (bo.po) by Tennom
* Welsh (cy.po) by Dafydd Tomos
* Basque (eu.po) by Piarres Beobide
* Galician (gl.po) by Jorge Barreiro
* 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
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 18:45:21 +0200
nobootloader (1.32) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* Estonian (et.po) by Mattias Põldaru
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Mahyuddin Susanto
* Icelandic (is.po) by Sveinn í Felli
* Khmer (km.po) by Chan Sambathratanak
* Kannada (kn.po) by Prabodh C P
* Korean (ko.po) by Changwoo Ryu
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po)
* Ukrainian (uk.po) by Borys Yanovych
-- Otavio Salvador <otavio@debian.org> Thu, 15 Mar 2012 14:52:17 -0300
nobootloader (1.31) unstable; urgency=low
[ Wouter Verhelst ]
* use user-params to add additional parameters to the kernel command
line, so that root-on-NBD shows the necessary nbdroot= parameter.
[ Updated translations ]
* German (de.po) by Holger Wansing
* Hebrew (he.po) by Lior Kaplan
* Italian (it.po) by Milo Casagrande
* Macedonian (mk.po) by Arangel Angov
* Russian (ru.po) by Yuri Kozlov
* Sinhala (si.po) by Danishka Navin
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Wouter Verhelst <wouter@debian.org> Fri, 02 Sep 2011 13:18:12 +0200
nobootloader (1.30) unstable; urgency=low
* Team upload
[ Samuel Thibault ]
* Add hurd-i386 support.
[ 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
* 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> Sun, 24 Apr 2011 09:14:59 +0200
nobootloader (1.29) 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
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 20:11:47 -0200
nobootloader (1.28) 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
* Esperanto (eo.po) by Felipe Castro
* Persian (fa.po) by Behrad Eslamifar
* Icelandic (is.po) by Sveinn í Felli
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Serbian (sr.po) by Janos Guljas
* Telugu (te.po) by Arjuna Rao Chavala
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 16:15:10 -0200
nobootloader (1.27) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by astur
* Belarusian (be.po) by Viktar Siarheichyk
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* Persian (fa.po) by acathur
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Lior Kaplan
* 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
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 17:22:44 +0200
nobootloader (1.26) unstable; urgency=low
[ Colin Watson ]
* Upgrade to debhelper v7.
[ Frans Pop ]
* Remove no longer needed Lintian override for missing Standards-
Version field.
[ Updated translations ]
* Asturian (ast.po) by astur
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Israt Jahan
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Holger Wansing
* Esperanto (eo.po) by Felipe Castro
* Estonian (et.po) by Mattias Põldaru
* Galician (gl.po) by Marce Villarino
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* Slovenian (sl.po) by Vanja Cvelbar
* Simplified Chinese (zh_CN.po) by 苏运强
-- Colin Watson <cjwatson@debian.org> Thu, 11 Mar 2010 02:31:09 +0000
nobootloader (1.25) unstable; urgency=low
[ Frans Pop ]
* Remove myself as uploader.
[ Colin Watson ]
* Make findfs use the last of any mounts found, in case there's more than
one due to pilot error in the partitioner.
[ Martin Michlmayr ]
* Remove Netwinder-specific code since this device is no longer
supported.
[ Updated translations ]
* ast (ast.po) by Marcos Alvarez Costales
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Md. Rezwan Shahid
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Greek (el.po) by Emmanuel Galatoulas
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by pi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by marce villarino
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Kazakh (kk.po) by Dauren Sarsenov
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Norwegian Bokmal (nb.po) by Hans Fredrik Nordhaug
* Punjabi (Gurmukhi) (pa.po) by Amanpreet Singh Alam
* Portuguese (pt.po) by Miguel Figueiredo
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Deng Xiyue
-- Martin Michlmayr <tbm@cyrius.com> Sun, 07 Jun 2009 09:24:53 +0200
nobootloader (1.24) unstable; urgency=high
* Rebuild with fixed Danish translation
-- Christian Perrier <bubulle@debian.org> Fri, 09 Jan 2009 07:44:00 +0100
nobootloader (1.23) unstable; urgency=low
[ Martin Michlmayr ]
* Drop the full stop from the package description because this use is
inconsistent.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Bosnian (bs.po) by Armin Besirovic
* Catalan (ca.po) by Jordi Mallach
* Welsh (cy.po) by Jonathan Price
* Danish (da.po)
* Greek, Modern (1453-) (el.po)
* Esperanto (eo.po) by Felipe Castro
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Croatian (hr.po) by Josip Rodin
* Italian (it.po) by Milo Casagrande
* Georgian (ka.po) by Aiet Kolkhi
* Central Khmer (km.po) by KHOEM Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Peteris Krisjanis
* Macedonian (mk.po) by Arangel Angov
* Nepali (ne.po) by Shiva Prasad Pokharel
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Slovak (sk.po) by Ivan Masár
* Serbian (sr.po) by Veselin Mijušković
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Євгеній Мещеряков
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 22:01:19 -0300
nobootloader (1.21) unstable; urgency=low
[ Frans Pop ]
* Reduce the size of the postinst by whitespace cleanup and the use of a
variable for template names; also improves readability.
* Add support for PA Semi's evaluation systems (#464429). Thanks to
Olof Johansson for the patch.
* Remove Matt Kraai and Sven Luther as Uploaders with many thanks for their
past contributions.
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
* 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 Esko Arajärvi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Marathi (mr.po) by Sampada
* Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
* Dutch (nl.po) by Frans Pop
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Thu, 08 May 2008 13:29:49 -0300
nobootloader (1.20) unstable; urgency=low
[ Colin Watson ]
* udev 117 merged all udev tools into a single binary called udevadm.
Check for this and use it instead of udevinfo if available.
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Belarusian (be.po) by Hleb Rubanau
* Bengali (bn.po) by Jamil Ahmed
* Finnish (fi.po) by Esko Arajärvi
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Stefano Canepa
* Korean (ko.po) by Changwoo Ryu
* Latvian (lv.po) by Viesturs Zarins
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* 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)
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 15:27:40 -0200
nobootloader (1.19) unstable; urgency=low
[ Otavio Salvador ]
* Do not depends of a specific base-installer version so we can provide
an alternative module for it.
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Romanian (ro.po) by Eddy Petrișor
-- Joey Hess <joeyh@debian.org> Mon, 18 Jun 2007 22:16:52 +0100
nobootloader (1.18) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu, with some improvements:
- Install and run mkvmlinuz on Pegasos if the kernel didn't already do
that for us.
- Mount /target/proc for mkvmlinuz.
[ Joey Hess ]
* Multiply menu-item-numbers by 100
[ Updated translations ]
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম)
* Dzongkha (dz.po) by translator
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Tagalog (tl.po) by Eric Pareja
* Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:35:44 -0400
nobootloader (1.17) unstable; urgency=low
[ Updated translations ]
* Malayalam (ml.po) by Praveen A
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:57:47 +0100
nobootloader (1.16) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Danish (da.po) by Claus Hindsgaul
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Galician (gl.po) by Jacobo Tarrio
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* 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)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:50:27 +0100
nobootloader (1.15) unstable; urgency=low
[ Colin Watson ]
* Fix broken sed invocation reported in #395259 in a better way, avoiding
devfs path assumptions.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Esperanto (eo.po) by Serge Leblanc
* Kurdish (ku.po) by rizoye-xerzi
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Polish (pl.po) by Bartosz Fenski
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Wed, 22 Nov 2006 15:12:22 +0100
nobootloader (1.14) unstable; urgency=low
[ Sven Luther ]
* Genesi firmware 1.3 will be released without the chrp compliant partition
numbering finally, so bumped the check to 1.3.99 and up.
-- Sven Luther <luther@debian.org> Sun, 29 Oct 2006 09:36:13 +0100
nobootloader (1.13) unstable; urgency=low
[ Sven Luther ]
* Fix bad sed invocation, which failed on devfs-style paths.
Closes: #395259.
-- Frans Pop <fjp@debian.org> Thu, 26 Oct 2006 03:46:59 +0200
nobootloader (1.12) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Andrei Darashenka
* Catalan (ca.po) by Jordi Mallach
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay
* Indonesian (id.po) by Arief S Fitrianto
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Nepali (ne.po) by Shiva Prasad Pokharel
* Romanian (ro.po) by Eddy Petrișor
* Albanian (sq.po) by Elian Myftiu
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 15:33:55 +0200
nobootloader (1.11) unstable; urgency=low
[ Colin Watson ]
* Mark Open Firmware commands as untranslatable.
* Patch adapted from one suggested by Sven Luther (closes: #388296):
- Check the Pegasos firmware for versions older than 1.2.99, and
subtract one from the partition number since those start counting
partitions at 0.
[ Sven Luther ]
* Update template for Genesi systems. Closes #388591.
[ Christian Perrier ]
* Avoid splitting a sentence in two parts which can make translations
difficult to handle.
[ Updated translations ]
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম)
* 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 (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
* 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
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Stefano Canepa
* Japanese (ja.po) by Kenshi Muto
* Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Bokmal (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* 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
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Fri, 6 Oct 2006 02:45:56 +0200
nobootloader (1.10) unstable; urgency=low
* If /sys/block and udevinfo are available, use them instead of devfs
device name parsing to work out IDE/SCSI Open Firmware paths for
Pegasos.
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Panjabi (pa.po) by A S Alam
* Northern Sami (se.po) by Børre Gaup
* Traditional Chinese (zh_TW.po) by Tetralet
-- Colin Watson <cjwatson@debian.org> Tue, 29 Aug 2006 11:20:35 +0100
nobootloader (1.09) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Welsh (cy.po) by Dafydd Harries
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* 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
* Hindi (hi.po) by Nishant Sharma
* Hungarian (hu.po) by SZERVÑC Attila
* Italian (it.po) by Giuseppe Sacco
* 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
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Čuhalev
* Tamil (ta.po) by Damodharan Rajalingam
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Thu, 13 Jul 2006 17:33:27 +0200
nobootloader (1.08) unstable; urgency=low
[ Martin Michlmayr ]
* Show the correct path of the kernel when no separate boot partition has
been chosen on Netwinder. Closes: #345320.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Hungarian (hu.po) by SZERVÑC Attila
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
-- Martin Michlmayr <tbm@cyrius.com> Sun, 12 Mar 2006 05:11:01 +0000
nobootloader (1.07) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Ognyan Kulev
* Bengali (bn.po) by Baishampayan Ghose
* German (de.po) by Jens Seidel
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Indonesian (id.po) by Parlin Imanuel Toh
* Icelandic (is.po) by David Steinn Geirsson
* Korean (ko.po) by Sunjae park
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Nynorsk (nn.po)
* Norwegian Nynorsk (pa_IN.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Frans Pop <fjp@debian.org> Mon, 23 Jan 2006 20:26:33 +0100
nobootloader (1.06) unstable; urgency=low
* Add a missing "a" to one of the templates.
* While I'm at it, remove some Debian branding, especially some that reads
better without the "Debian".
[ Updated translations ]
* Catalan (ca.po) by Guillem Jover
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* Greek, Modern (1453-) (el.po) by Greek Translation Team
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* 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 Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Joey Hess <joeyh@debian.org> Mon, 26 Sep 2005 17:16:23 +0200
nobootloader (1.05) unstable; urgency=low
[ Colin Watson ]
* Update GPL notices with the FSF's new address.
[ Joey Hess ]
* Update for rename of link_in_boot template, depend on new base-installer
that contains the new one.
* Updated translations:
- German (de.po) by Holger Wansing
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Dutch (nl.po) by Bart Cornelis
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Tue, 9 Aug 2005 15:39:50 -0400
nobootloader (1.04) unstable; urgency=low
* Colin Watson
- Remove useless dependency on parted-udeb.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Belarusian (be.po) by Andrei Darashenka
- Catalan (ca.po) by Guillem Jover
- Czech (cs.po) by Miroslav Kure
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- 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
- Gallegan (gl.po) by Jacobo Tarrio
- Hebrew (he.po) by Lior Kaplan
- Italian (it.po) by Giuseppe Sacco
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Malagasy (mg.po) by Jaonary Rabarisoa
- Macedonian (mk.po) by Georgi Stanojevski
- Macedonian (pa_IN.po) by Amanpreet Singh Alam
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrişor
- Russian (ru.po) by Yuri Kozlov
- 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
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Fri, 15 Jul 2005 17:57:55 +0300
nobootloader (1.03) unstable; urgency=low
* Note that this includes fix(es) to substitution bugs in translated
templates.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- 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
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Gallegan (gl.po) by Hctor Fenndez Lpez
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VEROK Istvan
- Italian (it.po) by Giuseppe Sacco
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Bøkmal, Norwegian (nb.po) by Hans Fredrik Nordhaug
- Dutch (nl.po) by Bart Cornelis
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Dmitry Beloglazov
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 2 Feb 2005 17:19:42 -0500
nobootloader (1.02) unstable; urgency=low
* Stephen R. Marenka
- Added self to uploaders.
- Added partconf workaround.
-- Stephen R. Marenka <smarenka@debian.org> Thu, 7 Oct 2004 13:38:59 -0500
nobootloader (1.01) 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
- Italian (it.po) by Giuseppe Sacco
- 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 15:16:03 -0400
nobootloader (1.00) unstable; urgency=low
* Joey Hess
- Gratuitious version number bump.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- 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
- French (fr.po) by French Team
- Gallegan (gl.po) by Héctor Fenández López
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- 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ūnasn
- Bøkmal, Norwegian (nb.po) by Axel Bojer
- Dutch (nl.po) by Bart Cornelis
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- 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ş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Mon, 27 Sep 2004 21:06:33 -0400
nobootloader (0.0.22) unstable; urgency=low
* Sven Luther
- Polishing of the powerpc/pegasos template.
-- Sven Luther <luther@debian.org> Mon, 6 Sep 2004 19:58:47 +0200
nobootloader (0.0.21) unstable; urgency=low
* Sven Luther
- Fixed missing $ which broke the case where /boot was not on a separate
partition.
- Modified template to mirror the nicer arm netwinder template.
-- Sven Luther <luther@debian.org> Fri, 27 Aug 2004 07:52:32 +0200
nobootloader (0.0.20) unstable; urgency=low
* Martin Michlmayr
- Add instructions for setting the Netwinder NeTTrom firmware
so it will boot Debian automatically.
- Simplify the code to detect the boot and root partitions.
- Use archdetect to detect the architecture.
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- Greek (el.po) by George Papamichelakis
- Spanish (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 Christian Perrier
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VERÓK István
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- 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
- Turkish (tr.po) by Ozgur Murat Homurlu
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Martin Michlmayr <tbm@cyrius.com> Sun, 15 Aug 2004 18:21:54 +0100
nobootloader (0.0.19) unstable; urgency=low
* Sven Luther
- Updated generic case string to show the partition as well.
- Added OF variable setting for the powerpc/chrp_pegasos case.
-- Sven Luther <luther@debian.org> Tue, 3 Aug 2004 21:48:43 +0200
nobootloader (0.0.18) unstable; urgency=low
* Sven Luther
- Changed postinst to use sed directly instead of /target/bin/sed, which may
break if we switch libc. (Closes: #262270)
- Prepared the code change to provide the $BOOT variable for holding the
partition containing the kernel. This would need a string change to be
effective though.
-- Sven Luther <luther@debian.org> Sat, 31 Jul 2004 12:44:49 +0200
nobootloader (0.0.17) unstable; urgency=low
* Sven Luther
- updated tranlations before the freeze in order to allow arch/subarch
specific boot instructions.
- added powerpc/chrp_pegasos specific OF boot instructions.
* Christian Perrier
- Corrected POTFILES.in with the new name of the templates file
-- Sven Luther <luther@debian.org> Wed, 28 Jul 2004 17:28:37 +0200
nobootloader (0.0.16) unstable; urgency=low
* Updated translations:
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 12:17:09 -0300
nobootloader (0.0.15) unstable; urgency=low
* Updated translations:
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Dmitry Beloglazov
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 12:52:17 -0400
nobootloader (0.0.14) unstable; urgency=low
* Stephen R. Marenka
- Integrate 2.2 kernel plus partconf support (/target/).
* Updated translations:
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Italian (it.po) by Giuseppe Sacco
- Russian (ru.po) by Dmitry Beloglazov
- Turkish (tr.po) by Ozgur Murat Homurlu
-- Joey Hess <joeyh@debian.org> Tue, 20 Apr 2004 10:19:19 -0400
nobootloader (0.0.13) unstable; urgency=low
* Joshua Kwan
- switch to debhelper's new udeb support.
* Updated translations:
- Gallegan (gl.po) by Héctor Fernández López
- Hebrew (he.po) by Lior Kaplan
-- Joey Hess <joeyh@debian.org> Sat, 10 Apr 2004 00:54:19 -0400
nobootloader (0.0.12) unstable; urgency=low
* Updated translations:
- Welsh (cy.po) by Dafydd Harries
- Indonesian (id.po) by Parlin Imanuel Toh
- Polish (pl.po) by Bartosz Fenski
- Russian (ru.po) by Nikolai Prokoschenko
-- Joey Hess <joeyh@debian.org> Thu, 1 Apr 2004 20:34:25 -0500
nobootloader (0.0.11) unstable; urgency=low
* Colin Watson
- Fix "architecure" => "architecture" typo. Translations unfuzzied
manually.
* Updated translations:
- Romanian (ro.po) by Eddy Petrisor
- Turkish (tr.po) by Ozgur Murat Homurlu
-- Colin Watson <cjwatson@debian.org> Thu, 25 Mar 2004 20:17:02 +0000
nobootloader (0.0.10) unstable; urgency=low
* Translations:
- Matjaz Horvat: Added Slovenian translation (sl.po)
-- Joey Hess <joeyh@debian.org> Sun, 14 Mar 2004 13:26:27 -0500
nobootloader (0.0.9) unstable; urgency=low
* Translations:
- Dafydd Harries : Added Welsh translation (cy.po)
-- Joey Hess <joeyh@debian.org> Tue, 09 Mar 2004 13:16:36 -0900
nobootloader (0.0.8) unstable; urgency=low
* Priority standard.
-- Joey Hess <joeyh@debian.org> Fri, 5 Mar 2004 08:16:36 -0900
nobootloader (0.0.7) unstable; urgency=low
* Translations:
- Changwoo Ryu
- Added Korean translation (ko.po)
- Håvard Korsvoll
- Added Norwegian nynorsk translation (nn.po)
- Javier Fernandez-Sanguino
- Added Spanish translation (es.po)
- Ming Hua
- Initial Traditional Chinese translation (zh_TW.po), by Tetralet
- Updated Traditional Chinese translation (zh_TW.po), by Tetralet
- Håvard Korsvoll
- Added Norwegian, bokmål translation, (nb.po). From Axel Bojer
-- Joey Hess <joeyh@debian.org> Tue, 2 Mar 2004 13:34:30 -0500
nobootloader (0.0.6) unstable; urgency=low
* Stephen R. Marenka
- Fix kernel 2.2.x if statement.
* Matt Kraai
- Add self to Uploaders.
-- Matt Kraai <kraai@debian.org> Tue, 24 Feb 2004 20:13:08 -0800
nobootloader (0.0.5) unstable; urgency=low
* Joey Hess
- Add a dependency on di-utils-mapdevfs.
-- Joey Hess <joeyh@debian.org> Sun, 22 Feb 2004 22:15:51 -0500
nobootloader (0.0.4) unstable; urgency=low
* Stephen R. Marenka
- Add kernel 2.2.x support.
* Updated translations:
- Ognyan Kulev
- Added Bulgarian translation (bg.po).
-- Joey Hess <joeyh@debian.org> Fri, 20 Feb 2004 17:20:32 -0500
nobootloader (0.0.3) unstable; urgency=low
* Updated translations:
- Carlos Z.F. Liu
- Add Simplified Chinese (zh_CN) translation
- Bart Cornelis
- Initials Dutch (nl.po) translation
- Giuseppe Sacco
- Added first italian translation (it.po)
- Peter Mann
- Update Slovak translation
- Kęstutis Biliūnas
- Initial Lithuanian translation (lt.po).
- Andre Dahlqvist
- Initial Swedish translation (sv.po)
- Miguel Figueiredo
- Initial Portuguese translation (pt.po)
- Safir Secerovic
- Add Bosnian translation (bs.po).
- h3li0s
- added albanian translation (sq.po)
- Jordi Mallach
- Update Catalan translation (ca.po).
* Eugen Meshcheryakov : added Ukrainian translation (uk.po)
-- Christian Perrier <bubulle@debian.org> Sun, 8 Feb 2004 20:26:42 +0100
nobootloader (0.0.2) unstable; urgency=low
* Bartosz Fenski
- Added Polish (pl) translation
* Miroslav Kure
- Update Czech translation
* Konstantinos Margaritis
- Update Greek translation.
* Dennis Stampfer
- Initial German translation de.po
* Christian Perrier
- Rewrite templates (no hard-formatting and a few rephrasing)
- Run debconf-updatepo
* Konstantinos Margaritis
- Updated Greek translation
* Kenshi Muto
- Add Japanese translation (ja.po)
* Peter Mann
- Initial Slovak translation
* Claus Hindsgaul
- Initial Danish translation (da.po)
* André Luís Lopes
- Added Brazilian Portuguese (pt_BR) translation.
-- Joey Hess <joeyh@debian.org> Thu, 22 Jan 2004 20:18:02 -0500
nobootloader (0.0.1) unstable; urgency=low
* Initial release.
-- Sven Luther <luther@debian.org> Tue, 20 Jan 2004 14:42:01 +0100
|