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
|
clock-setup (0.155) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Finnish (fi.po) by Kimmo Kujansuu
-- Holger Wansing <hwansing@mailbox.org> Fri, 23 Jul 2021 19:03:37 +0200
clock-setup (0.154) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Lithuanian (lt.po) by Gediminas Murauskas
-- Holger Wansing <hwansing@mailbox.org> Thu, 08 Jul 2021 16:28:40 +0200
clock-setup (0.153) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Romanian (ro.po) by Christian Eichert
-- Holger Wansing <hwansing@mailbox.org> Wed, 23 Jun 2021 21:17:58 +0200
clock-setup (0.152) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by Fahim Sabah
* Japanese (ja.po) by Nozomu KURASAWA
-- Holger Wansing <hwansing@mailbox.org> Sun, 30 May 2021 22:26:09 +0200
clock-setup (0.151) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Traditional Chinese (zh_TW.po) by louies0623
-- Holger Wansing <hwansing@mailbox.org> Sun, 21 Mar 2021 15:38:47 +0100
clock-setup (0.150) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Catalan (ca.po) by d
* Danish (da.po) by Michael Millet
* Galician (gl.po) by mantinan
* Hindi (hi.po) by KushagraKarira
* Latvian (lv.po) by Tranzistors
* Punjabi (Gurmukhi) (pa.po) by Aman Alam
* Tamil (ta.po) by Vasudevan Tirumurti
* Thai (th.po) by Theppitak Karoonboonyanan
-- Holger Wansing <hwansing@mailbox.org> Sun, 14 Feb 2021 19:05:17 +0100
clock-setup (0.149) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Greek (el.po) by EG
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
-- Holger Wansing <hwansing@mailbox.org> Wed, 30 Dec 2020 23:09:16 +0100
clock-setup (0.148) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Greek (el.po) by EG
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Italian (it.po) by Milo Casagrande
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
* Traditional Chinese (zh_TW.po) by Walter Cheuk
[ New translations ]
* Kabyle (kab.po) by Slimane Selyan Amiri
* Occitan (oc.po) by Quentin PAGÈS
-- Holger Wansing <hwansing@mailbox.org> Sun, 01 Nov 2020 11:43:35 +0100
clock-setup (0.147) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino
* French (fr.po) by Baptiste Jammet
* Polish (pl.po) by Bartosz Feński
-- Holger Wansing <hwansing@mailbox.org> Sun, 20 Sep 2020 22:10:33 +0200
clock-setup (0.146) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Estonian (et.po) by Kristjan Räts
* Hebrew (he.po) by Yaron Shahrabani
* Croatian (hr.po) by gogogogi
* Korean (ko.po) by Changwoo Ryu
* Norwegian Bokmal (nb.po) by Allan Nordhøy
* Dutch (nl.po) by Frans Spiesschaert
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
-- Holger Wansing <hwansing@mailbox.org> Sun, 10 May 2020 12:38:57 +0200
clock-setup (0.145) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Russian (ru.po) by Lev Lamberov
-- Holger Wansing <hwansing@mailbox.org> Sat, 07 Mar 2020 20:48:20 +0100
clock-setup (0.144) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Hebrew (he.po) by Yaron Shahrabani
* Croatian (hr.po) by Milo Ivir
* Simplified Chinese (zh_CN.po) by 玉堂白鹤
-- Holger Wansing <hwansing@mailbox.org> Wed, 29 Jan 2020 19:13:33 +0100
clock-setup (0.143) unstable; urgency=medium
* Team upload
[ Holger Wansing ]
* Rephrase template about the benefit of a correctly set up clock.
Includes updating all po|pot files.
[ Updated translations ]
* German (de.po) by Holger Wansing
* French (fr.po) by Baptiste Jammet
* Hebrew (he.po) by Yaron Shahrabani
* Indonesian (id.po) by Andika Triwidada
* Icelandic (is.po) by Sveinn í Felli
* Dutch (nl.po) by Frans Spiesschaert
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
* Portuguese (pt.po) by Miguel Figueiredo
* Serbian (sr.po) by Filipovic Dragan
* Swedish (sv.po) by Mattias Münster
-- Holger Wansing <hwansing@mailbox.org> Fri, 20 Dec 2019 15:37:57 +0100
clock-setup (0.142) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927538)
[ 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> Mon, 07 Oct 2019 20:48:45 +0200
clock-setup (0.141) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by Yaron Shahrabani
* Hebrew (he.po) by Yaron Shahrabani
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Sun, 03 Mar 2019 12:34:07 +0100
clock-setup (0.140) unstable; urgency=medium
[ Holger Wansing ]
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Persian (fa.po) by nima sahraneshin
-- Holger Wansing <hwansing@mailbox.org> Sun, 06 Jan 2019 14:11:59 +0100
clock-setup (0.139) 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> Sat, 11 Aug 2018 21:10:18 +0200
clock-setup (0.138) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Mon, 12 Feb 2018 07:11:28 +0100
clock-setup (0.137) unstable; urgency=medium
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Wed, 31 Jan 2018 07:55:45 +0100
clock-setup (0.136) unstable; urgency=medium
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
-- Christian Perrier <bubulle@debian.org> Sat, 20 Jan 2018 19:24:24 +0100
clock-setup (0.135) unstable; urgency=medium
[ Updated translations ]
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Sat, 09 Dec 2017 08:02:10 +0100
clock-setup (0.134) unstable; urgency=medium
[ Updated translations ]
* Greek (el.po) by Sotirios Vrachas
-- Christian Perrier <bubulle@debian.org> Thu, 14 Sep 2017 22:42:40 +0200
clock-setup (0.133) unstable; urgency=medium
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by Yangfl
-- Christian Perrier <bubulle@debian.org> Mon, 26 Jun 2017 08:27:50 +0200
clock-setup (0.132) unstable; urgency=medium
* Only call sed on /etc/default/rcS to adjust UTC setting when this
file exists (Closes: #854924 -- See also: #854923).
-- Cyril Brulebois <kibi@debian.org> Sun, 12 Feb 2017 03:20:22 +0100
clock-setup (0.131) unstable; urgency=medium
* Really drop Otavio. Sigh...
-- Christian Perrier <bubulle@debian.org> Wed, 07 Dec 2016 07:44:17 +0100
clock-setup (0.130) unstable; urgency=medium
* Drop Otavio Salvador from Uploaders. Thank you for your work
within the D-I team. Closes: #847257
-- Christian Perrier <bubulle@debian.org> Wed, 07 Dec 2016 07:37:03 +0100
clock-setup (0.129) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sun, 14 Aug 2016 14:17:14 +0200
clock-setup (0.128) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Sun, 07 Feb 2016 18:56:21 +0100
clock-setup (0.127) unstable; urgency=medium
[ Ben Hutchings ]
* Revert "Disable e2fsck superblock time check if RTC is set to local time".
This is no longer needed since e2fsprogs version 1.42.13.
-- Christian Perrier <bubulle@debian.org> Fri, 22 Jan 2016 07:50:17 +0100
clock-setup (0.126) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sun, 09 Aug 2015 08:20:43 +0200
clock-setup (0.125) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 25 Jul 2015 07:32:10 +0200
clock-setup (0.124) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Fri, 19 Jun 2015 11:45:34 +0200
clock-setup (0.123) unstable; urgency=medium
* Disable e2fsck superblock time check if RTC is set to local time
(Closes: #767040)
-- Ben Hutchings <ben@decadent.org.uk> Thu, 09 Apr 2015 00:49:23 +0100
clock-setup (0.122) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Sat, 07 Mar 2015 21:39:55 +0100
clock-setup (0.121) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Wed, 10 Sep 2014 13:54:20 +0200
clock-setup (0.120) unstable; urgency=medium
[ Updated translations ]
* Hungarian (hu.po) by Judit Gyimesi
-- Cyril Brulebois <kibi@debian.org> Fri, 14 Mar 2014 14:41:27 +0100
clock-setup (0.119) 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 19:56:21 +0100
clock-setup (0.118) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Fri, 08 Nov 2013 22:01:02 +0100
clock-setup (0.117) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Fri, 16 Aug 2013 08:43:44 +0200
clock-setup (0.116) unstable; urgency=low
[ Dmitrijs Ledkovs ]
* Set debian source format to '3.0 (native)'.
* Bump debhelper compat level to 9.
* Set Vcs-* to canonical format.
[ Petter Reinholdtsen ]
* Syslog the NTP server name passed to rdate (Closes: #714274).
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jul 2013 12:52:18 +0200
clock-setup (0.115) unstable; urgency=low
[ Colin Watson ]
* Use correct compiler when cross-building.
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Thu, 16 May 2013 17:33:59 +0200
clock-setup (0.114) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Sun, 09 Dec 2012 18:40:19 +0100
clock-setup (0.113) unstable; urgency=low
* Really replace XC-Package-Type by Package-Type in debian/control
* Add myself to Uploaders
[ Updated translations ]
* Asturian (ast.po) by ivarela
* Ukrainian (uk.po) by Yuri Chornoivan
-- Christian Perrier <bubulle@debian.org> Wed, 17 Oct 2012 09:08:10 +0200
clock-setup (0.112) unstable; urgency=low
* Team upload
* Replace XC-Package-Type to Package-Type
[ Updated translations ]
* Welsh (cy.po) by Dafydd Tomos
* Lithuanian (lt.po) by Rimas Kudelis
* Latvian (lv.po) by Rūdolfs Mazurs
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 17:49:43 +0200
clock-setup (0.111) unstable; urgency=low
[ Samuel Thibault ]
* Pass --directisa to hwlock on hurd.
[ Roger Leigh ]
* Set UTC or LOCAL in /etc/adjtime for systemd. Closes: #660093
* Migrate UTC setting from /etc/default/rcS; revert use of
/etc/default/hwclock, which is not used for holding the UTC
setting.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Tibetan (bo.po) by Tennom
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by Piarres Beobide
* Indonesian (id.po) by Mahyuddin Susanto
* Macedonian (mk.po) by Arangel Angov
* Panjabi (pa.po) by A S Alam
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Joey Hess <joeyh@debian.org> Mon, 21 May 2012 16:26:35 -0400
clock-setup (0.110) unstable; urgency=low
* /etc/default/hwclock supersedes /etc/default/rcS as the location
for the UTC configuration option. Use /etc/default/hwclock, but
fall back to /etc/default/rcS if it is not present, for backward
compatibility. (Roger Leigh) Closes: #659611
-- Joey Hess <joeyh@debian.org> Sun, 12 Feb 2012 15:28:20 -0400
clock-setup (0.109) unstable; urgency=low
[ Colin Watson ]
* Add ${shlibs:Depends} for set-date-epoch.
[ Philipp Kern ]
* Add support for s390x.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* German (de.po) by Holger Wansing
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Macedonian (mk.po) by Arangel Angov
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po) by Danishka Navin
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Philipp Kern <pkern@debian.org> Sun, 02 Oct 2011 22:18:17 +0200
clock-setup (0.108) unstable; urgency=low
* Fix syntax errors in finish-install.d/10clock-setup, introduced in
0.107.
* Test syntax of debian/clock-setup.postinst and
finish-install.d/10clock-setup at build time.
-- Colin Watson <cjwatson@debian.org> Thu, 05 May 2011 13:36:30 +0100
clock-setup (0.107) unstable; urgency=low
* Team upload
* Assume the RTC is using local time when Solaris is detected
(except for SPARC architecture)
Closes: #504590
[ 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
* Estonian (et.po) by Mattias Põldaru
* 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> Sun, 24 Apr 2011 08:20:12 +0200
clock-setup (0.106) unstable; urgency=low
[ Colin Watson ]
* Drop vestige of dead lpia architecture.
[ 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 19:31:37 -0200
clock-setup (0.105) unstable; urgency=low
[ Joey Hess ]
* Avoid installing os-prober (and all its filesystem module dependencies)
when on an architecture that cannot possibly run one of the known OSs
that may need a local clock. Closes: #594965
[ Aurelien Jarno ]
* Add kfreebsd-amd64, kfreebsd-i386 and hurd-i386 in the list of
architectures that may run the known OSs that may need a local clock.
[ Updated translations ]
* Bengali (bn.po) by Israt Jahan
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Anders Jenbo
* Icelandic (is.po) by Sveinn Felli
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 10:04:12 -0200
clock-setup (0.104) unstable; urgency=low
* Don't bind mount /dev to /target/dev before calling hwclock. It is
already done on Linux, or devfs mounted twice on GNU/kFreeBSD,
during the whole install process.
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Armin Beširović
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by Ebrahim Byagowi
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Telugu (te.po) by Arjuna Rao Chavala
-- Aurelien Jarno <aurel32@debian.org> Mon, 23 Aug 2010 00:16:40 +0200
clock-setup (0.103) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by astur
* Belarusian (be.po) by Viktar Siarheichyk
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Israt Jahan
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* Persian (fa.po) by acathur
* French (fr.po) by Christian Perrier
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Milo Casagrande
* Central Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* 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 10:30:40 +0200
clock-setup (0.102) unstable; urgency=low
* Use log-output when calling set-date-epoch.
* Upgrade to debhelper v7.
[ Updated translations ]
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Wed, 16 Dec 2009 20:54:51 +0100
clock-setup (0.101) unstable; urgency=low
* Remove no longer needed Lintian override for missing Standards-
Version field.
* If the current system date is before the epoch, rdate fails to set it to
the date obtained using NTP (#502336). Work around this by setting the date
to the epoch (1-1-1970) if the current date is smaller, before calling
rdate. Closes: #548128.
[ Updated translations ]
* Asturian (ast.po) by astur
* Danish (da.po) by Mads Lundby
* Galician (gl.po) by Marce Villarino
-- Frans Pop <fjp@debian.org> Mon, 14 Dec 2009 21:54:16 +0100
clock-setup (0.100) unstable; urgency=low
* finish-install: there's no need anymore to create a /dev/rtc symlink.
* finish-install: don't modify /target/etc/adjtime directly. First of all
it does not yet exist, and calling hwclock with the correct option has
the same effect anyway. Closes: #541436.
* finish-install: only set the hardware clock if the system time was
updated using rdate.
[ Updated translations ]
* Asturian (ast.po) by Marcos Antonio Alvarez Costales
* Korean (ko.po) by Changwoo Ryu
-- Frans Pop <fjp@debian.org> Wed, 02 Sep 2009 17:02:42 +0200
clock-setup (0.99) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Add lpia to architecture list.
- Fix rdate-udeb dependency to include the epoch.
- Check for the existence of /etc/adjtime before running sed over it,
since Ubuntu no longer necessarily ships that file given
https://wiki.ubuntu.com/HardwareClock (Evan Dandrea).
- Fix handling of progress bar cancellation (LP: #262500):
+ db_progress INFO might be cancelled if the user is quick; cope with
that.
+ Reset the progresscancel capability when we're finished.
[ Frans Pop ]
* Remove no longer needed versioned dependencies.
* Make clock-setup safe for s390. D-I is not allowed to change the system
clock on s390, but it is still needed there because of time zone setup.
Closes: #538344.
* Bump debhelper compatibility to 6.
[ Updated translations ]
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
-- Frans Pop <fjp@debian.org> Sun, 02 Aug 2009 10:40:41 +0200
clock-setup (0.98) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Use 'update-dev --settle' rather than 'update-dev' after loading rtc
modules. Requires di-utils 1.66.
[ Frans Pop ]
* Remove myself as uploader.
* Drop support for the ppc64 architecture.
[ Updated translations ]
* Asturian (ast.po) by Marcos Alvarez Costales
* Bengali (bn.po) by Md. Rezwan Shahid
* German (de.po) by Jens Seidel
* Esperanto (eo.po) by Felipe Castro
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by pi
* 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> Thu, 11 Jun 2009 21:45:06 +0200
clock-setup (0.97) 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)
* Greek, Modern (1453-) (el.po)
* Esperanto (eo.po) by Felipe Castro
* French (fr.po) by Christian Perrier
* Croatian (hr.po) by Josip Rodin
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Erdal Ronahi
* 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ć
* 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 19:03:32 -0300
clock-setup (0.96) unstable; urgency=low
[ Frans Pop ]
* Remove Petter Reinholdtsen and Christian Perrier as Uploaders with many
thanks for their past contributions.
[ Jérémy Bobbio ]
* As #436497 has been fixed in newt 0.52.2-11.3, step the progress bar again
after setting the time.
* Step the progress bar while attempting to contact the NTP servers.
This also adds the ability to cancel NTP synchronisation. (Closes: #448871)
Depends: rdate-udeb (>= 1.1.3-2)
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Milo Casagrande
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Marathi (mr.po) by Sampada
* Panjabi (pa.po) by Amanpreet Singh Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Mert Dirik
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Jérémy Bobbio <lunar@debian.org> Tue, 22 Jul 2008 15:15:22 +0000
clock-setup (0.95) unstable; urgency=low
[ Joey Hess ]
* Don't die if os-prober exits nonzero for some reason.
[ Updated translations ]
* Finnish (fi.po) by Esko Arajärvi
* Hindi (hi.po) by Kumar Appaiah
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Stefano Canepa
* Central Khmer (km.po) by Khoem Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Viesturs Zarins
* Panjabi (pa.po) by Amanpreet Singh Alam
* Slovenian (sl.po) by Matej Kovacic
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po)
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 15:25:46 -0200
clock-setup (0.94) unstable; urgency=low
* anna-install os-prober-udeb not os-prober (anna-install doesn't follow
provides)
-- Joey Hess <joeyh@debian.org> Fri, 11 Jan 2008 20:58:20 -0500
clock-setup (0.93) unstable; urgency=low
[ Joey Hess ]
* Try to load rtc-dev always, as it's a generic module.
[ dann frazier ]
* Override the default ntp server with the first server listed in
netcfg/dhcp_net_servers (if set). Closes: #447071
[ Joey Hess ]
* More generic rtc-dev handling. Closes: #449292
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Belarusian (be.po) by Hleb Rubanau
* Dzongkha (dz.po) by Jurmey Rabgay
* Esperanto (eo.po) by Serge Leblanc
* Galician (gl.po) by Jacobo Tarrio
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Erdal Ronahi
* Malayalam (ml.po) by Praveen
* Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Ivan Masár
-- Joey Hess <joeyh@debian.org> Mon, 07 Jan 2008 17:44:45 -0500
clock-setup (0.92) unstable; urgency=low
* rtc-dev is built-in on nslu2 in 2.6.22, still try to load the module for
now, but reword log message on failure.
* Add an explicit dependency on localechooser, which is used by tzsetup,
to work around main-menu brain-damange (#444462). Closes: #444444
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Stefano Canepa
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Dutch (nl.po) by Bart Cornelis
* Polish (pl.po) by Bartosz Fenski
* Slovak (sk.po) by Peter Mann
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Fri, 28 Sep 2007 15:05:35 -0400
clock-setup (0.91) unstable; urgency=low
* Don't step the progress bar after setting the time. It seems that cdebconf
progress bars use a timer, which gets confused if the time jumps
backwards. Closes: #436340
-- Joey Hess <joeyh@debian.org> Tue, 07 Aug 2007 14:03:10 -0700
clock-setup (0.90) unstable; urgency=low
* Make the menu item to run before partman, depend on configured-network,
and run rdate to pull time from NTP, as well as running tzsetup.
Closes: #236673, #247484
* Move the UTC question into the finish-install script.
* Use hwclock to store the correct time to the system clock at the end of
the install.
* Since hwclock has been known to hang on problematic hardware, deal with
hangs.
* Add support for using the rtc-dev driver on the nslu2.
* Remove old isinstallable file that was for sarge, we don't support sarge
installs anymore.
* Make whether to use NTP, as well as the server to use be asked as low
priority questions, and preseedable.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* 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 Tshewang Norbu
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Japanese (ja.po) by Kenshi Muto
* Norwegian Bokmal (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Frans Pop
* Punjabi (Gurmukhi) (pa.po) by A S 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
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Ukrainian (uk.po)
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Wed, 25 Jul 2007 13:38:23 -0400
clock-setup (0.16) unstable; urgency=low
* Multiply menu-item-numbers by 100
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:35:16 -0400
clock-setup (0.15) unstable; urgency=low
* Also change the UTC/LOCAL setting in /etc/adjtime. This will hopefully
rid us of the incidental reports of a wrong clock setting after the first
reboot. Thanks to Karen Larson for pointing us in the right direction.
Closes: #415871.
-- Frans Pop <fjp@debian.org> Fri, 23 Mar 2007 14:23:52 +0100
clock-setup (0.14) unstable; urgency=low
[ Joey Hess ]
* Add armel architecture.
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
* Malayalam (ml.po) by Praveen A
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:47:06 +0100
clock-setup (0.13) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Danish (da.po) by Claus Hindsgaul
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* 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
* Slovak (sk.po) by Peter Mann
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:32:27 +0100
clock-setup (0.12) unstable; urgency=low
* Stop progress bar if <go back> is selected.
[ Updated translations ]
* Belarusian (be.po) by Andrei Darashenka
* Estonian (et.po) by Siim Põder
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Kurdish (ku.po) by Erdal Ronahi
* Romanian (ro.po) by Eddy Petrișor
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 14:37:37 +0200
clock-setup (0.11) unstable; urgency=low
[ Frans Pop ]
* Add ppc64 to architecture list. Closes: #365345.
[ Petter Reinholdtsen ]
* Drop depend on mounted-partitions. It is not needed, as the editing of
target/ is done in finish-install.d/, and it messes up the debian-edu
main-menu reordering.
[ Frans Pop ]
* Remove standards-version and add Lintian override for it.
* Add dependency on debconf.
* Add myself to uploaders.
[ Updated translations ]
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Gujarati (gu.po) by Kartik Mistry
* Hebrew (he.po) by Lior Kaplan
* Latvian (lv.po) by Aigars Mahinovs
* Panjabi (pa.po) by A S Alam
* Portuguese (pt.po) by Miguel Figueiredo
* Russian (ru.po) by Yuri Kozlov
* Vietnamese (vi.po) by Clytie Siddall
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Sat, 16 Sep 2006 11:35:10 +0200
clock-setup (0.10) unstable; urgency=low
* Add kfreebsd-amd64 to arch list. Closes: #363661
* Switch to finish-install.
[ 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
* Irish (ga.po) by Kevin Patrick Scannell
* 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
* Russian (ru.po) by Yuri Kozlov
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Čuhalev
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Joey Hess <joeyh@debian.org> Mon, 5 Jun 2006 18:11:56 -0400
clock-setup (0.9) unstable; urgency=low
* Add isinstallable file to skip clock setup when installing Sarge.
[ Updated translations ]
* Bosnian (bs.po) by Safir Secerovic
* Basque (eu.po) by Piarres Beobide
* Hindi (hi.po) by Nishant Sharma
* Hungarian (hu.po) by SZERVÑC Attila
* Swedish (sv.po) by Daniel Nylander
-- Frans Pop <fjp@debian.org> Mon, 20 Mar 2006 18:32:59 +0100
clock-setup (0.8) unstable; urgency=low
[ Martin Michlmayr ]
* Add armeb to the Architecture field.
[ Colin Watson ]
* Fix DOS/Windows autodetection
(https://launchpad.net/distros/ubuntu/+bug/31928).
[ Frans Pop ]
* The output of os-prober can contain spaces, so we can't just use a for
loop; use a function to check the probed operating systems instead.
[ 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
-- Frans Pop <fjp@debian.org> Thu, 23 Feb 2006 16:14:26 +0100
clock-setup (0.7) unstable; urgency=low
* Make sure no .svn directories get included in the package.
[ Updated translations ]
* Slovenian (sl.po) by Jure Cuhalev
-- Frans Pop <fjp@debian.org> Sat, 28 Jan 2006 16:29:37 +0100
clock-setup (0.6) 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 Jens Seidel
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* 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
* Indonesian (id.po) by Parlin Imanuel Toh
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Dutch (pa_IN.po) by Amanpreet Singh Alam
* 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
* 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
-- Frans Pop <fjp@debian.org> Mon, 23 Jan 2006 20:27:43 +0100
clock-setup (0.5) unstable; urgency=low
* Add a little progress bar as the os-prober run can take a while.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Ognyan Kulev
* Bengali (bn.po) by Baishampayan Ghose
* Catalan (ca.po) by Guillem Jover
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* 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
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po)
* 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 Petrişor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Thu, 17 Nov 2005 14:31:06 -0500
clock-setup (0.4) unstable; urgency=low
[ Frans Pop ]
* UTC officially stands for "Coordinated Universal Time".
[ Joey Hess ]
* Source confmodule in prebaseconfig script. Thanks, Frans Pop.
-- Joey Hess <joeyh@debian.org> Thu, 22 Sep 2005 07:12:57 +0200
clock-setup (0.3) unstable; urgency=low
* Fix name of queston in prebaseconfig script.
* Updated translations:
- German (de.po) by Holger Wansing
-- Joey Hess <joeyh@debian.org> Mon, 8 Aug 2005 14:36:18 -0400
clock-setup (0.2) unstable; urgency=low
[ Joey Hess ]
* Add kfreebsd-i386 to arch list. Closes: #320579
[ Colin Watson ]
* Update GPL notices with the FSF's new address.
[ Otavio Salvador ]
* Add Standards-Version field.
[ Joey Hess ]
* Fix syntax errors in db_set commands.
* Updated translations:
- German (de.po)
- Galician (gl.po) by Jacobo Tarrio
- Dutch (nl.po) by Frans Pop
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Wed, 3 Aug 2005 21:53:21 -0400
clock-setup (0.1) unstable; urgency=low
* New udeb, loosely derived from base-config and Ubuntu's tzsetup
udeb.
* Use OS probing to avoid asking the confusing UTC question most of the
time. Closes: #240706
* Don't display system time, that's really a red herring as the point is
to choose how the time _should_ be stored, not how it is stored.
Closes: #259869, #270239
(Yes, this means some users will need to set their hardware clock
post-install. It might be added to this package, eventually.)
* Build on all arches except s390, which has none of this hwclock
nonsense. If other arches always use UTC, I can exclude them too..
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Belarusian (be.po) by Andrei Darashenka
- 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 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 Piarre Beobide Egaña
- Persian (fa.po) by Arash Bijanzadeh
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Jacobo Tarrio
- Hebrew (he.po) by Lior Kaplan
- Hindi (hi.po) by Ravishankar Shrivastava
- Croatian (hr.po) by Krunoslav Gernhard
- Hungarian (hu.po) by VEROK Istvan
- Indonesian (id.po) by Arief S Fitrianto
- 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ūnas
- Latvian (lv.po) by Aigars Mahinovs
- Malagasy (mg.po) by Jaonary Rabarisoa
- Macedonian (mk.po) by Georgi Stanojevski
- Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
- Dutch (nl.po) by Bart Cornelis
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Norwegian Nynorsk (pa_IN.po) by Amanpreet Singh Alam
- 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 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 Per Olofsson
- 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
- Xhosa (xh.po) by Canonical Ltd
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Thu, 28 Jul 2005 01:08:00 -0400
|