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
|
partman-basicmethods (69) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Mon, 04 Mar 2019 05:21:10 +0100
partman-basicmethods (68) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Marathi (mr.po) by Nayan Nakhare
-- Holger Wansing <hwansing@mailbox.org> Thu, 01 Nov 2018 15:41:31 +0100
partman-basicmethods (67) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
-- Holger Wansing <hwansing@mailbox.org> Tue, 28 Aug 2018 15:07:15 +0200
partman-basicmethods (66) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sun, 18 Feb 2018 08:40:42 +0100
partman-basicmethods (65) unstable; urgency=medium
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Tue, 23 Jan 2018 07:14:54 +0100
partman-basicmethods (64) unstable; urgency=medium
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
* Serbian (sr.po) by Filipovic Dragan
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jan 2018 19:11:36 +0100
partman-basicmethods (63) unstable; urgency=medium
[ Updated translations ]
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Sun, 03 Dec 2017 15:32:06 +0100
partman-basicmethods (62) unstable; urgency=medium
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by Yangfl
-- Christian Perrier <bubulle@debian.org> Wed, 28 Jun 2017 07:08:11 +0200
partman-basicmethods (61) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Tue, 02 Feb 2016 05:53:06 +0100
partman-basicmethods (60) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Mon, 10 Aug 2015 09:20:33 +0200
partman-basicmethods (59) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Thu, 02 Jul 2015 17:49:06 +0200
partman-basicmethods (58) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sun, 05 Jan 2014 16:36:14 +0100
partman-basicmethods (57) unstable; urgency=low
[ Updated translations ]
* Bosnian (bs.po) by Amila Valjevčić
-- Christian Perrier <bubulle@debian.org> Wed, 18 Dec 2013 21:33:32 +0100
partman-basicmethods (56) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 09 Nov 2013 21:59:21 +0100
partman-basicmethods (55) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 17 Aug 2013 08:19:08 +0200
partman-basicmethods (54) 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 12:57:48 +0200
partman-basicmethods (53) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sun, 19 May 2013 14:51:20 +0200
partman-basicmethods (52) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sat, 30 Mar 2013 17:29:50 +0100
partman-basicmethods (51) unstable; urgency=low
* Replace XC-Package-Type by Package-Type in debian/control
[ Updated translations ]
* Galician (gl.po) by Jorge Barreiro
-- Christian Perrier <bubulle@debian.org> Tue, 16 Oct 2012 09:56:22 +0200
partman-basicmethods (50) unstable; urgency=low
* Team upload
[ Updated translations ]
* Tibetan (bo.po) by Tennom
* Welsh (cy.po) by Dafydd Tomos
* 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)
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 12:42:43 +0200
partman-basicmethods (49) 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
* 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)
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Borys Yanovych
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Thu, 15 Mar 2012 14:57:22 -0300
partman-basicmethods (48) 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 19:45:23 +0200
partman-basicmethods (47) 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:22:46 -0200
partman-basicmethods (46) unstable; urgency=low
[ Colin Watson ]
* Use 'dh $@ --options' rather than 'dh --options $@', for
forward-compatibility with debhelper v8.
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Israt Jahan
* Bosnian (bs.po) by Armin Beirovi
* Danish (da.po) by Jacob Sparre Andersen
* Icelandic (is.po) by Sveinn Felli
* Korean (ko.po) by Changwoo Ryu
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 10:17:46 -0200
partman-basicmethods (45) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by astur
* Belarusian (be.po) by Viktar Siarheichyk
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by acathur
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Lior Kaplan
* Indonesian (id.po) by Arief S Fitrianto
* Central Khmer (km.po) by Khoem Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Nepali (ne.po)
* 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
* Tamil (ta.po) by Dr,T,Vasudevan
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 19:05:33 +0200
partman-basicmethods (44) unstable; urgency=low
[ Colin Watson ]
* Upgrade to debhelper v7.
* Don't send the SET_FLAGS command when the new flags are the same as the
old ones; this avoids partition tables being rewritten when all we did
was set the method to "don't use" (LP: #445067).
[ Frans Pop ]
* Remove no longer needed Lintian override for missing Standards-Version
field.
[ Updated translations ]
* Asturian (ast.po) by Marcos Antonio Alvarez Costales
* Belarusian (be.po) by Pavel Piatruk
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* Polish (pl.po) by Bartosz Fenski
* Slovenian (sl.po) by Vanja Cvelbar
* Simplified Chinese (zh_CN.po) by 苏运强
-- Frans Pop <fjp@debian.org> Mon, 22 Feb 2010 04:17:09 +0100
partman-basicmethods (43) unstable; urgency=low
[ Christian Perrier ]
* Bump debhelper compatibility level to 6
* Set myself as uploader
[ Updated translations ]
* Asturian (ast.po) by Marcos Alvarez Costales
* Bengali (bn.po) by Md. Rezwan Shahid
* 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
* Italian (it.po) by Milo Casagrande
* Kazakh (kk.po) by daur88
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Tagalog (tl.po) by Eric Pareja
-- Christian Perrier <bubulle@debian.org> Sun, 14 Jun 2009 18:53:29 +0200
partman-basicmethods (42) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bosnian (bs.po) by Armin Besirovic
* Welsh (cy.po) by Jonathan Price
* Danish (da.po)
* Croatian (hr.po) by Josip Rodin
* Latvian (lv.po) by Peteris Krisjanis
* Macedonian (mk.po) by Arangel Angov
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Serbian (sr.po) by Veselin Mijušković
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 21:06:02 -0300
partman-basicmethods (41) unstable; urgency=low
[ Jérémy Bobbio ]
* Remove lvm, raid and swap flags when selecting dont_use. Otherwise
switching from raid or lvm methods to dont_use would not be effectful
(as $id/method is written again in update.d/{md,lvm}_sync_flags scripts).
* Use cdebconf's new column alignment feature for active_partition.
Requires partman-base (>= 124).
[ Updated translations ]
* Esperanto (eo.po) by Felipe Castro
-- Otavio Salvador <otavio@debian.org> Tue, 05 Aug 2008 13:50:16 -0300
partman-basicmethods (40) unstable; urgency=low
[ Colin Watson ]
* When changing filesystem, set the default mount options to the contents
of /lib/partman/mountoptions/${fs}_defaults if it exists.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
-- Frans Pop <fjp@debian.org> Wed, 16 Jul 2008 13:55:00 +0200
partman-basicmethods (39) unstable; urgency=low
[ Updated translations ]
* Finnish (fi.po) by Esko Arajärvi
* Marathi (mr.po) by Sampada
* Panjabi (pa.po) by Amanpreet Singh Alam
* Portuguese (pt.po) by Miguel Figueiredo
* Slovak (sk.po) by Ivan Masár
-- Otavio Salvador <otavio@debian.org> Thu, 08 May 2008 00:59:12 -0300
partman-basicmethods (38) unstable; urgency=low
[ Updated translations ]
* Finnish (fi.po) by Esko Arajärvi
* Indonesian (id.po) by Arief S Fitrianto
* Latvian (lv.po) by Viesturs Zarins
* Panjabi (pa.po) by Amanpreet Singh Alam
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 08:50:17 -0200
partman-basicmethods (37) unstable; urgency=low
* Moved definitions.sh to ./lib/base.sh. Requires partman-base (>= 114).
* Major whitespace cleanup and a few minor coding style fixes.
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Korean (ko.po) by Changwoo Ryu
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Panjabi (pa.po) by A S Alam
-- Frans Pop <fjp@debian.org> Sat, 29 Dec 2007 22:12:32 +0100
partman-basicmethods (36) unstable; urgency=low
[ Frans Pop ]
* Move deletion of SVN directories to install-rc script.
* Improve the way install-rc is called.
[ Colin Watson ]
* Use 'mkdir -p' rather than more awkward test-then-create constructions.
[ Max Vozeler ]
* choose_method/filesystem/choices: Allow scripts in
veto_filesystems to prevent certain filesystems from
being offered.
[ Updated translations ]
* Belarusian (be.po) by Hleb Rubanau
* Bengali (bn.po) by Jamil Ahmed
* Danish (da.po) by Claus Hindsgaul
* Italian (it.po) by Stefano Canepa
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Panjabi (pa.po) by A S Alam
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Wed, 05 Dec 2007 13:18:20 +0100
partman-basicmethods (35) unstable; urgency=low
* Move sanity-checking scripts from finish.d to check.d. Requires
partman-base 106.
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Tamil (ta.po) by Dr.T.Vasudevan
-- Colin Watson <cjwatson@debian.org> Fri, 27 Apr 2007 00:30:45 +0100
partman-basicmethods (34) unstable; urgency=low
[ Updated translations ]
* Malayalam (ml.po) by Praveen A
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 18:19:03 +0100
partman-basicmethods (33) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Danish (da.po) by Claus Hindsgaul
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* 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
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 12:21:48 +0100
partman-basicmethods (32) unstable; urgency=low
* Add missing debconf dependency.
* Add Lintian override for standards-version.
[ Updated translations ]
* Belarusian (be.po) by Andrei Darashenka
* German (de.po) by Jens Seidel
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Panjabi (pa.po) by A S Alam
* Romanian (ro.po) by Eddy Petrișor
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 15:55:16 +0200
partman-basicmethods (31) unstable; urgency=low
[ 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
* 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
* Galician (gl.po) by Jacobo Tarrio
* Gujarati (gu.po) by Kartik Mistry
* Hungarian (hu.po) by SZERVÑC Attila
* Georgian (ka.po) by Aiet Kolkhi
* Khmer (km.po) by Khoem Sokhem
* 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
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Čuhalev
* Swedish (sv.po) by Daniel Nylander
* 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:38:52 +0200
partman-basicmethods (30) unstable; urgency=low
[ Updated translations ]
* Bengali (bn.po) by Baishampayan Ghose
* Catalan (ca.po) by Jordi Mallach
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Hindi (hi.po) by Nishant Sharma
* Indonesian (id.po) by Parlin Imanuel Toh
* Icelandic (is.po) by David Steinn Geirsson
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrişor
* Slovenian (sl.po) by Jure Cuhalev
* Swedish (sv.po) by Daniel Nylander
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Tue, 24 Jan 2006 22:01:21 +0100
partman-basicmethods (29) unstable; urgency=low
[ Colin Watson ]
* Use 'rm -f' rather than more awkward test-then-remove constructions.
* Add myself to Uploaders.
* Remove Standards-Version:, not applicable to udebs.
[ Frans Pop ]
* In choose_method/filesystem, sort uniq the filessystems within the
loop to avoid duplicates. Closes: #308721.
[ Updated translations ]
* Bengali (bn.po) by Baishampayan Ghose
* Romanian (ro.po) by Eddy Petrişor
* Swedish (sv.po) by Daniel Nylander
-- Colin Watson <cjwatson@debian.org> Thu, 27 Oct 2005 15:41:10 +0100
partman-basicmethods (28) unstable; urgency=low
[ Updated translations ]
* Greek, Modern (1453-) (el.po) by Greek Translation Team
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Romanian (ro.po) by Eddy Petrisor
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Mon, 26 Sep 2005 17:54:29 +0200
partman-basicmethods (27) unstable; urgency=low
* Colin Watson
- Rename templates to partman-basicmethods.templates to help out
translators working on a single file.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Belarusian (be.po) by Andrei Darashenka
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Esperanto (eo.po) by Serge Leblanc
- 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
- 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 (Brazil) (pt_BR.po) by André Luís Lopes
- 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
-- Joey Hess <joeyh@debian.org> Fri, 15 Jul 2005 17:18:20 +0300
partman-basicmethods (26) unstable; urgency=low
* Note that this includes fix(es) for substitution bugs in translated
templates.
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Finnish (fi.po) by Tapio Lehtonen
- Gallegan (gl.po) by Hctor Fenndez Lpez
- Italian (it.po) by Stefano Canepa
- Dutch (nl.po) by Bart Cornelis
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
-- Joey Hess <joeyh@debian.org> Wed, 2 Feb 2005 17:26:48 -0500
partman-basicmethods (25) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
-- Joey Hess <joeyh@debian.org> Wed, 20 Oct 2004 15:02:40 -0400
partman-basicmethods (24) 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 15:38:28 -0400
partman-basicmethods (23) unstable; urgency=low
* Updated translations:
- 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
- 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 VERÓK István
- Indonesian (id.po) by Parlin Imanuel Toh
- Italian (it.po) by Stefano Canepa
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Bøkmal, Norwegian (nb.po) by Axel Bojer
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Russian L10N Team
- Slovenian (sl.po) by Jure Čuhalev
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Mon, 27 Sep 2004 21:25:40 -0400
partman-basicmethods (22) unstable; urgency=low
* Don't unset seen flags.
-- Joey Hess <joeyh@debian.org> Wed, 1 Sep 2004 16:04:24 -0400
partman-basicmethods (21) unstable; urgency=low
* Joey Hess
- Revert use of noatime and quiet by default, this is not the time to be
making such changes to the base system.
-- Joey Hess <joeyh@debian.org> Tue, 31 Aug 2004 13:10:01 -0400
partman-basicmethods (20) unstable; urgency=low
* Anton Zinoviev
- templates: do not use capitall letter in "do not use the partition".
- choose_method/filesystem/do_option: if the user has not yet chosen
options set "noatime" and "quiet". Thanks to Ryan Underwood.
- choose_method/filesystem/choices: do not sort the file systems, keep
ext3 first. Thanks to Frans Pop, closes: #265547.
- active_partition/format/choices, templates: make the option "create
file system" clearer:
Format the partition: {yes, format it | no, keep existing data}
Thanks to Frans Pop, closes: #265548.
* Updated translations:
- Arabic (ar.po) by Christian Perrier
- 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
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Basque (eu.po) by Piarres Beobide Egaña
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Bjørn Steensrud
- 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 Yuri Kozlov
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Mon, 30 Aug 2004 12:17:37 -0400
partman-basicmethods (19) unstable; urgency=low
* Updated translations:
- Arabic (ar.po) by Abdulaziz Al-Arfaj
- 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 George Papamichelakis
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Persian (fa.po) by Arash Bijanzadeh
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Hungarian (hu.po) by VERÓK István
- Indonesian (id.po) by I Gede Wijaya S
- 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
- 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
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Slovak (sk.po) by Peter KLFMANiK Mann
- Albanian (sq.po) by Elian Myftiu
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Sun, 25 Jul 2004 19:20:25 -0400
partman-basicmethods (18) unstable; urgency=low
* Anton Zinoviev
- remove choose_method/{format,keep}, add choose_method/filesystem and
active_partition/format; give the active_partition menu the
following look:
Use as: {swap|ext3|reiserfs|..|LVM|...}
Format: {yes|no}
Thanks to Adam Lydick, closes: #248874
* Updated translations:
- Albanian (sq.po) by Elian Myftiu
- Arabic (ar.po) by Abdulaziz Al-Arfaj
- Bosnian (bs.po) by Safir Šećerović
- Welsh (cy.po) by Dafydd Harries
- Persian (fa.po) by Arash Bijanzadeh
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Kruno
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Portuguese (pt.po) by Miguel Figueiredo
-- Anton Zinoviev <zinoviev@debian.org> Tue, 20 Jul 2004 16:01:23 +0300
partman-basicmethods (17) unstable; urgency=low
* Updated translations:
- 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 George Papamichelakis
- 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 Christian Perrier
- Gallegan (gl.po) by Héctor Fernández López
- Hungarian (hu.po) by VERÓK István
- 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
- Bøkmal, Norwegian (nb.po) by Knut Yrvin
- 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 Yuri Kozlov
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 12:32:04 -0300
partman-basicmethods (16) unstable; urgency=low
* Colin Watson
- Depend on partman.
* Anton Zinoviev
- templates: use "keep and use the existing data" instead of "use the
existing format". Thanks to Willi Mann, closes: #237841.
- remove dependency on partman as otherwise main-menu falls in
infinite loop - partman depends on partman-target and partman-target
depends on partman-basicmethods
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- French (fr.po) by Christian Perrier
- Indonesian (id.po) by I Gede Wijaya S
- Japanese (ja.po) by Kenshi Muto
- Dutch (nl.po) by Bart Cornelis
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Anton Zinoviev <zinoviev@debian.org> Thu, 13 May 2004 11:48:53 +0300
partman-basicmethods (15) unstable; urgency=low
* Updated translations:
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 13:46:39 -0400
partman-basicmethods (14) unstable; urgency=low
* Updated translations:
- Gallegan (gl.po) by Héctor Fernández López
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by I Gede Wijaya S
- Romanian (ro.po) by Eddy Petrisor
- Turkish (tr.po) by Osman Yüksel
-- Joey Hess <joeyh@debian.org> Tue, 20 Apr 2004 11:06:35 -0400
partman-basicmethods (13) unstable; urgency=low
* Anton Zinoviev
- new file in partition directories: use_filesystem. Methods that use
file systems should touch it.
- add update.d/basicmethods
- renumber the methods in choose_method to give more space.
- rules: remove .svn directories from the package
* Joshua Kwan
- Switch to new debhelper udeb support.
* Updated translations:
- Basque (eu.po) by Piarres Beobide Egaña
- Gallegan (gl.po) by
- Turkish (tr.po) by Osman Yüksel
-- Joey Hess <joeyh@debian.org> Sun, 11 Apr 2004 21:24:11 -0400
partman-basicmethods (12) unstable; urgency=low
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- Hungarian (hu.po) by VERÓK István
- Italian (it.po) by Stefano Canepa
- Romanian (ro.po) by Eddy Petrisor
- Swedish (sv.po) by André Dahlqvist
- Turkish (tr.po) by Osman Yüksel
-- Joey Hess <joeyh@debian.org> Tue, 30 Mar 2004 14:56:16 -0500
partman-basicmethods (11) unstable; urgency=low
* Updated translations:
- Italian (it.po) by Stefano Canepa
- Russian (ru.po) by Nikolai Prokoschenko
- Turkish (tr.po) by Osman Yüksel
-- Anton Zinoviev <zinoviev@debian.org> Sun, 14 Mar 2004 17:19:36 +0200
partman-basicmethods (10) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
-- Joey Hess <joeyh@debian.org> Sat, 13 Mar 2004 12:33:02 -0500
partman-basicmethods (9) unstable; urgency=low
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Italian (it.po) by Stefano Canepa
- Slovak (sk.po) by Peter KLFMANiK Mann
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Fri, 12 Mar 2004 12:50:16 -0500
partman-basicmethods (8) unstable; urgency=low
* Joey Hess
- Remove autogenerated postrm.
* Maybe some translations changed. I don't know.
-- Joey Hess <joeyh@debian.org> Mon, 8 Mar 2004 19:38:57 -0500
partman-basicmethods (7) unstable; urgency=low
* Joey Hess
- improved the wording of method_only
* Updated translations:
- 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 Konstantinos Margaritis
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Hungarian (hu.po) by VERÓK István
- 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
- Dravidian (Other) (nl.po) by Bart Cornelis
- (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
- 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 Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Thu, 4 Mar 2004 11:47:00 -0500
partman-basicmethods (6) unstable; urgency=low
* Christian Perrier
- unmess changelog
* Anton Zinoviev
- short and long debconf templates for the methods as described in the
new version of the documentation
* Updated translations:
- Stefano Canepa
- Added Italian translation
- Peter Mann
- Update Slovak translation
- Nuno Sénica
- Added Portuguese translation (pt.po)
- h3li0s
- added albanian translation (sq.po)
- Jordi Mallach
- Add Catalan translation (ca.po).
- Eugen Meshcheryakov
- added Ukrainian translation (uk.po)
- Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po).
-- Anton Zinoviev <zinoviev@debian.org> Fri, 20 Feb 2004 19:35:34 +0200
partman-basicmethods (5) unstable; urgency=low
* Bartosz Fenski
- Add Polish (pl) translation.
* Kenshi Muto
- Added Japanese translation (ja.po)
* Konstantinos Margaritis
- Initial Greek translation (el.po)
* André Luís Lopes
- Added Brazilian Portuguese (pt_BR) translation.
* Nikolai Prokoschenko
- Added russian translation (ru.po)
* Peter Mann
- Initial Slovak translation
* Dennis Stampfer
- Initial German translation (de.po)
- Update German translation
* Anton Zinoviev
- the install target in debian/rules removes all files CVS from the
generated package.
- added local variable for Emacs `coding: utf-8' at the end of the
changelog.
* Christian Perrier
- changed select template to boolean and rewrite it
- run debconf-updatepo
- Initial French translation (fr.po)
* Konstantinos Margaritis
- Updated Greek translation (el.po)
* Claus Hindsgaul
- Initial Danish translation (da.po)
* Miroslav Kure
- Initial Czech translation
* Ming Hua
- Initial Simplified Chinese translation (zh_CN.po)
* Bart Cornelis
- Initial Dutch (nl.po) translation
* Kęstutis Biliūnas
- Initial Lithuanian (lt.po) translation.
* Safir Secerovic
- Add Bosnian translation (bs.po).
* Joey Hess
- Fix udeb filename.
-- Joey Hess <joeyh@debian.org> Wed, 21 Jan 2004 14:21:35 -0500
partman-basicmethods (4) unstable; urgency=low
* Uses po-debconf.
* Use db_metaget to translate.
-- Anton Zinoviev <zinoviev@debian.org> Mon, 22 Dec 2003 21:10:20 +0200
partman-basicmethods (3) unstable; urgency=low
* Uses `exit 0' and `return 0' instead of just `exit' and `return'.
-- Anton Zinoviev <zinoviev@debian.org> Fri, 12 Dec 2003 09:02:11 +0200
partman-basicmethods (2) unstable; urgency=low
* First version.
-- Anton Zinoviev <zinoviev@debian.org> Wed, 12 Nov 2003 21:13:09 +0200
|