From af6c31428ca04e05f982b730d24c621fe54e1372 Mon Sep 17 00:00:00 2001 From: warrink Date: Wed, 21 Oct 2009 09:59:46 +0000 Subject: Sending translation for Dutch --- po/nl.po | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/po/nl.po b/po/nl.po index 902abd99..12f8903b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: abrt\n" "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" -"POT-Creation-Date: 2009-10-08 17:38+0000\n" -"PO-Revision-Date: 2009-10-08 21:12+0200\n" +"POT-Creation-Date: 2009-10-16 16:11+0000\n" +"PO-Revision-Date: 2009-10-16 21:12+0200\n" "Last-Translator: Geert Warrink \n" "Language-Team: nl \n" "MIME-Version: 1.0\n" @@ -207,7 +207,7 @@ msgstr "" "Kan geen rapport krijgen!\n" "Mist debuginfo?" -#: ../src/Gui/CCMainWindow.py:308 +#: ../src/Gui/CCMainWindow.py:310 #, python-format msgid "" "Reporting failed!\n" @@ -216,12 +216,16 @@ msgstr "" "Rapporteren mislukte!\n" "%s" -#: ../src/Gui/CCMainWindow.py:340 +#: ../src/Gui/CCMainWindow.py:329 ../src/Gui/CCMainWindow.py:356 #, python-format msgid "Error getting the report: %s" msgstr "Fout tijdens het verkrijgen van het rapport: %s" -#: ../src/Gui/CCReporterDialog.py:98 +#: ../src/Gui/CCReporterDialog.py:167 +msgid "Brief description how to reproduce this or what you did..." +msgstr "Korte beschrijving hoe dit te reproduceren is of wat je deed..." + +#: ../src/Gui/CCReporterDialog.py:211 #, python-format msgid "" "WARNING, you're about to send data which might contain sensitive " @@ -232,10 +236,6 @@ msgstr "" "informatie kan bevatten\n" "Wil je %s echt versturen?\n" -#: ../src/Gui/CCReporterDialog.py:111 -msgid "Brief description how to reproduce this or what you did..." -msgstr "Korte beschrijving hoe dit te reproduceren is of wat je deed..." - #: ../src/Gui/dialogs.glade.h:1 msgid "Report done" msgstr "Rapport klaar" @@ -274,6 +274,10 @@ msgstr "Verzenden" msgid "gtk-cancel" msgstr "gtk-cancel" +#: ../src/Gui/report.glade.h:5 +msgid "gtk-refresh" +msgstr "gtk-refresh" + #: ../src/Gui/SettingsDialog.py:34 ../src/Gui/SettingsDialog.py:51 msgid "Select plugin" msgstr "Selecteer een plugin" @@ -411,7 +415,7 @@ msgstr "ABRT service draait niet" msgid "Warning" msgstr "Waarschuwing" -#: ../src/Daemon/Daemon.cpp:546 +#: ../src/Daemon/Daemon.cpp:542 msgid "" "Report size exceeded the quota. Please check system's MaxCrashReportsSize " "value in abrt.conf." @@ -460,31 +464,31 @@ msgstr "Uitloggen..." msgid "Getting local universal unique identification" msgstr "Verkrijgen van locale universele unieke identificatie" -#: ../lib/Plugins/CCpp.cpp:146 +#: ../lib/Plugins/CCpp.cpp:161 msgid "Getting backtrace..." msgstr "Backtrace ophalen..." -#: ../lib/Plugins/CCpp.cpp:415 +#: ../lib/Plugins/CCpp.cpp:442 msgid "Searching for debug-info packages..." msgstr "Zoeken naar debug-info pakketten..." -#: ../lib/Plugins/CCpp.cpp:451 +#: ../lib/Plugins/CCpp.cpp:504 msgid "Downloading and installing debug-info packages..." msgstr "Downloaden en installeren van debug-info pakketten..." -#: ../lib/Plugins/CCpp.cpp:513 +#: ../lib/Plugins/CCpp.cpp:566 msgid "Getting local universal unique identification..." msgstr "Verkrijgen van locale universele unieke identificatie..." -#: ../lib/Plugins/CCpp.cpp:532 +#: ../lib/Plugins/CCpp.cpp:585 msgid "Getting global universal unique identification..." msgstr "Verkrijgen van golbale universele unieke identificatie..." -#: ../lib/Plugins/CCpp.cpp:583 +#: ../lib/Plugins/CCpp.cpp:630 msgid "Starting report creation..." msgstr "Beginnen met rapport aanmaken..." -#: ../lib/Plugins/CCpp.cpp:612 +#: ../lib/Plugins/CCpp.cpp:661 msgid "Skipping debuginfo installation" msgstr "Sla debuginfo installatie over" -- cgit From 4fdccf0281cb9158988e504151d6b7bfb89b465c Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 21 Oct 2009 14:58:59 +0200 Subject: lib/Plugins/CCpp.cpp: add a workaround for gdb bug Signed-off-by: Denys Vlasenko --- lib/Plugins/CCpp.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp index 3fedd947..0e0eb3b3 100644 --- a/lib/Plugins/CCpp.cpp +++ b/lib/Plugins/CCpp.cpp @@ -169,6 +169,11 @@ static void GetBacktrace(const std::string& pDebugDumpDir, std::string& pBacktra dd.LoadText(FILENAME_UID, UID); } + // Workaround for + // http://sourceware.org/bugzilla/show_bug.cgi?id=9622 + unsetenv("TERM"); + putenv((char*)"TERM=dumb"); + char* args[9]; args[0] = (char*)"gdb"; args[1] = (char*)"-batch"; -- cgit