From 8e5e86f341d4a0b385c1b8305ddce02f5c7e6786 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 8 Nov 2008 07:49:58 +0100 Subject: Missing accent --- po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/fr.po b/po/fr.po index 9bc0aced5..ac39ae5b5 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2102,7 +2102,7 @@ msgstr "Erreur de lecture du serveur" #: methods/http.cc:945 apt-pkg/contrib/mmap.cc:196 msgid "Failed to truncate file" -msgstr "Echec de la troncature du fichier" +msgstr "Échec de la troncature du fichier" #: methods/http.cc:1105 msgid "Bad header data" -- cgit v1.2.3 From b0c16d166730b46992451b838073e9d36a8164e1 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sun, 9 Nov 2008 08:37:09 +0100 Subject: Thai translation update --- debian/changelog | 1 + po/ChangeLog | 4 ++++ po/th.po | 13 ++++++------- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index 54f3c35af..a1a2d9f1c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ apt (0.7.18) unstable; urgency=low [ Christian Perrier ] * Translations: - French updated + - Thai updated. Closes: #505067 [ Eugene V. Lyubimkin ] * doc/examples/configure-index: diff --git a/po/ChangeLog b/po/ChangeLog index cdc605b4a..2f2a97766 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2008-11-09 Theppitak Karoonboonyanan + + * th.po: updated to 540t. + 2008-11-06 Christian Perrier * Update all PO files and apt-all.pot. 540 strings. diff --git a/po/th.po b/po/th.po index cb28792b4..b4e767e1c 100644 --- a/po/th.po +++ b/po/th.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2008-10-28 18:12+0100\n" -"PO-Revision-Date: 2008-05-06 12:52+0700\n" +"PO-Revision-Date: 2008-11-06 15:54+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" @@ -2024,9 +2024,8 @@ msgid "Error reading from server" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" #: methods/http.cc:945 apt-pkg/contrib/mmap.cc:196 -#, fuzzy msgid "Failed to truncate file" -msgstr "ไม่สามารถเขียนแฟ้ม %s" +msgstr "ไม่สามารถตัดท้ายแฟ้ม" #: methods/http.cc:1105 msgid "Bad header data" @@ -2051,7 +2050,7 @@ msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบ #: apt-pkg/contrib/mmap.cc:213 msgid "Dynamic MMap ran out of room" -msgstr "" +msgstr "เนื้อที่สำหรับทำ MMap แบบพลวัตเต็มแล้ว" #: apt-pkg/contrib/strutl.cc:1014 #, c-format @@ -2765,9 +2764,9 @@ msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" #: apt-pkg/deb/dpkgpm.cc:49 -#, fuzzy, c-format +#, c-format msgid "Installing %s" -msgstr "ติดตั้ง %s แล้ว" +msgstr "กำลังติดตั้ง %s" #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:612 #, c-format @@ -2782,7 +2781,7 @@ msgstr "กำลังถอดถอน %s" #: apt-pkg/deb/dpkgpm.cc:52 #, c-format msgid "Running post-installation trigger %s" -msgstr "" +msgstr "กำลังเรียกการสะกิด %s หลังการติดตั้ง" #: apt-pkg/deb/dpkgpm.cc:521 #, c-format -- cgit v1.2.3 From 6e7f872dfdf7de0108b07e3c8f1ccda57734e6f8 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 12 Nov 2008 16:24:26 +0100 Subject: fix SIGHUP handling (closes: #463030) --- apt-pkg/deb/dpkgpm.cc | 5 +++++ debian/changelog | 3 +++ 2 files changed, 8 insertions(+) diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 85cf4e119..5359f81ef 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -773,6 +773,9 @@ bool pkgDPkgPM::Go(int OutStatusFd) sighandler_t old_SIGQUIT = signal(SIGQUIT,SIG_IGN); sighandler_t old_SIGINT = signal(SIGINT,SIG_IGN); + // ignore SIGHUP as well (debian #463030) + sighandler_t old_SIGHUP = signal(SIGHUP,SIG_IGN); + struct termios tt; struct termios tt_out; struct winsize win; @@ -881,6 +884,7 @@ bool pkgDPkgPM::Go(int OutStatusFd) // Restore sig int/quit signal(SIGQUIT,old_SIGQUIT); signal(SIGINT,old_SIGINT); + signal(SIGINT,old_SIGHUP); return _error->Errno("waitpid","Couldn't wait for subprocess"); } @@ -920,6 +924,7 @@ bool pkgDPkgPM::Go(int OutStatusFd) // Restore sig int/quit signal(SIGQUIT,old_SIGQUIT); signal(SIGINT,old_SIGINT); + signal(SIGINT,old_SIGHUP); if(master >= 0) { diff --git a/debian/changelog b/debian/changelog index e7309d577..27f78e958 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,9 @@ apt (0.7.19) unstable; urgency=low is a request to install only one package and it is not installable. (Closes: #419521) + [ Michael Vogt ] + - fix SIGHUP handling (closes: #463030) + -- Eugene V. Lyubimkin Sat, 08 Nov 2008 12:40:19 +0200 apt (0.7.18) unstable; urgency=low -- cgit v1.2.3