From b404a9c9272d8c097212daf828a62b3b5c761224 Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Mar 03 2014 15:03:32 +0000 Subject: import abrt-2.1.11-12.el7.src.rpm --- diff --git a/.abrt.metadata b/.abrt.metadata index 5569270..155025f 100644 --- a/.abrt.metadata +++ b/.abrt.metadata @@ -1 +1 @@ -7c2011f5f4ffebb3b34bed27ce6fed34006941d0 SOURCES/abrt-2.1.7.tar.gz +f48ed7d1deb2ebca94be387deb21ce1902910bf6 SOURCES/abrt-2.1.11.tar.gz diff --git a/SOURCES/0001-Do-not-enabled-Shortened-reporting-in-GNOME.patch b/SOURCES/0001-Do-not-enabled-Shortened-reporting-in-GNOME.patch new file mode 100644 index 0000000..2ffc534 --- /dev/null +++ b/SOURCES/0001-Do-not-enabled-Shortened-reporting-in-GNOME.patch @@ -0,0 +1,32 @@ +From 815de5d1c1c230600fdf63ee1c95fae9fe7d49a2 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jan 2014 20:32:40 +0100 +Subject: [ABRT PATCH 1/6] Do not enabled Shortened reporting in GNOME + +Related to #918041 + +Signed-off-by: Jakub Filak +--- + src/lib/abrt_conf.c | 6 +----- + 1 file changed, 1 insertion(+), 5 deletions(-) + +diff --git a/src/lib/abrt_conf.c b/src/lib/abrt_conf.c +index f7fdc6d..5eb69e2 100644 +--- a/src/lib/abrt_conf.c ++++ b/src/lib/abrt_conf.c +@@ -100,11 +100,7 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) + remove_map_string_item(settings, "ShortenedReporting"); + } + else +- { +- /* Default: enabled for GNOME desktop, else disabled */ +- const char *desktop_env = getenv("DESKTOP_SESSION"); +- g_settings_shortenedreporting = (desktop_env && strcasestr(desktop_env, "gnome") != NULL); +- } ++ g_settings_shortenedreporting = 0; + + GHashTableIter iter; + const char *name; +-- +1.8.3.1 + diff --git a/SOURCES/0002-remove-abrt-bodhi-from-configuration.patch b/SOURCES/0002-remove-abrt-bodhi-from-configuration.patch new file mode 100644 index 0000000..8d6aba4 --- /dev/null +++ b/SOURCES/0002-remove-abrt-bodhi-from-configuration.patch @@ -0,0 +1,44 @@ +From b257656e599e785164bbc5e72706a02f925ff942 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jan 2014 20:39:09 +0100 +Subject: [ABRT PATCH 2/6] remove abrt-bodhi from configuration + +Related to rhbz#1038923 + +Signed-off-by: Jakub Filak +--- + src/plugins/ccpp_event.conf | 2 +- + src/plugins/ccpp_retrace_event.conf | 8 +------- + 2 files changed, 2 insertions(+), 8 deletions(-) + +diff --git a/src/plugins/ccpp_event.conf b/src/plugins/ccpp_event.conf +index 9fbe760..79b9a8a 100644 +--- a/src/plugins/ccpp_event.conf ++++ b/src/plugins/ccpp_event.conf +@@ -70,7 +70,7 @@ EVENT=collect_xsession_errors analyzer=CCpp dso_list~=.*/libX11.* + # TODO: can we still specify additional directories to search for debuginfos, + # or was this ability lost with move to python installer? + EVENT=analyze_LocalGDB analyzer=CCpp +- abrt-action-analyze-ccpp-local ++ abrt-action-analyze-ccpp-local --without-bodhi + + + # Bugzilla requires nonempty duphash +diff --git a/src/plugins/ccpp_retrace_event.conf b/src/plugins/ccpp_retrace_event.conf +index 60e53d7..893502f 100644 +--- a/src/plugins/ccpp_retrace_event.conf ++++ b/src/plugins/ccpp_retrace_event.conf +@@ -1,9 +1,3 @@ + EVENT=analyze_RetraceServer analyzer=CCpp + abrt-retrace-client batch --dir "$DUMP_DIR" --status-delay 10 && +- abrt-action-analyze-backtrace && +- ( +- bug_id=$(reporter-bugzilla -h `cat duphash`) && +- if test -n "$bug_id"; then +- abrt-bodhi -r -b $bug_id +- fi +- ) ++ abrt-action-analyze-backtrace +-- +1.8.3.1 + diff --git a/SOURCES/0003-replace-all-Fedora-URLs-by-corresponding-values-for-.patch b/SOURCES/0003-replace-all-Fedora-URLs-by-corresponding-values-for-.patch new file mode 100644 index 0000000..dc03aa0 --- /dev/null +++ b/SOURCES/0003-replace-all-Fedora-URLs-by-corresponding-values-for-.patch @@ -0,0 +1,55 @@ +From 30c70b7dd18681017b4b5277a324f04063be96c7 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jan 2014 20:45:08 +0100 +Subject: [ABRT PATCH 3/6] replace all Fedora URLs by corresponding values for + RHEL + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-retrace-client.c | 2 +- + src/plugins/analyze_CCpp.xml.in | 2 +- + src/plugins/analyze_RetraceServer.xml.in | 2 +- + 3 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/plugins/abrt-retrace-client.c b/src/plugins/abrt-retrace-client.c +index 60bbbc2..3b6c247 100644 +--- a/src/plugins/abrt-retrace-client.c ++++ b/src/plugins/abrt-retrace-client.c +@@ -60,7 +60,7 @@ static bool no_pkgcheck; + + static struct https_cfg cfg = + { +- .url = "retrace.fedoraproject.org", ++ .url = "localhost", + .port = 443, + .ssl_allow_insecure = false, + }; +diff --git a/src/plugins/analyze_CCpp.xml.in b/src/plugins/analyze_CCpp.xml.in +index a7ce4dd..6f02692 100644 +--- a/src/plugins/analyze_CCpp.xml.in ++++ b/src/plugins/analyze_CCpp.xml.in +@@ -26,7 +26,7 @@ + + +diff --git a/src/plugins/analyze_RetraceServer.xml.in b/src/plugins/analyze_RetraceServer.xml.in +index e437cac..cf1d25a 100644 +--- a/src/plugins/analyze_RetraceServer.xml.in ++++ b/src/plugins/analyze_RetraceServer.xml.in +@@ -12,7 +12,7 @@ + + +-- +1.8.3.1 + diff --git a/SOURCES/0004-have-AutoreportingEnabled-by-default.patch b/SOURCES/0004-have-AutoreportingEnabled-by-default.patch new file mode 100644 index 0000000..b1724f1 --- /dev/null +++ b/SOURCES/0004-have-AutoreportingEnabled-by-default.patch @@ -0,0 +1,28 @@ +From d6d8014e1a9a748a732897c449b7de757c1a56c9 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jan 2014 20:46:37 +0100 +Subject: [ABRT PATCH 4/6] have AutoreportingEnabled by default + +Related to rhbz#1031572 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 59d1831..403b93d 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -34,7 +34,7 @@ AutoreportingEvent = report_uReport + + # Enables automatic running of the event configured in AutoreportingEvent option. + # +-AutoreportingEnabled = no ++AutoreportingEnabled = yes + + # Enables shortened GUI reporting where the reporting is interrupted after + # AutoreportingEvent is done. +-- +1.8.3.1 + diff --git a/SOURCES/0005-Enable-sosreport.patch b/SOURCES/0005-Enable-sosreport.patch new file mode 100644 index 0000000..d2e2414 --- /dev/null +++ b/SOURCES/0005-Enable-sosreport.patch @@ -0,0 +1,35 @@ +From c5211c6542dd7168c2b63bd8f28051215a5dcc32 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jan 2014 20:49:58 +0100 +Subject: [ABRT PATCH 5/6] Enable sosreport + +Related to rhbz#1032585 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt_event.conf | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf +index a53001a..2aecb2a 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -67,12 +67,12 @@ EVENT=post-create runlevel= + # Example: if you want to save sosreport immediately at the moment of a crash: + # (alternatively, you can add similar command to EVENT=analyze_foo's, + # if you would rather perform this collection later): +-#EVENT=post-create ++EVENT=post-create + nice sosreport --tmp-dir "$DUMP_DIR" --batch \ +- --only=anaconda --only=bootloader --only=devicemapper \ ++ --only=anaconda --only=boot --only=devicemapper \ + --only=filesys --only=hardware --only=kernel --only=libraries \ + --only=memory --only=networking --only=nfsserver --only=pam \ +- --only=process --only=rpm -k rpm.rpmva=off --only=ssh \ ++ --only=process --only=ssh \ + --only=startup --only=yum --only=general --only=x11 \ + >sosreport.log 2>&1 \ + && { +-- +1.8.3.1 + diff --git a/SOURCES/0006-post_report-always-exit-silenty.patch b/SOURCES/0006-post_report-always-exit-silenty.patch new file mode 100644 index 0000000..a5c6f86 --- /dev/null +++ b/SOURCES/0006-post_report-always-exit-silenty.patch @@ -0,0 +1,64 @@ +From 0e84b466b067c9db945de3ca08780e67148a20eb Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jan 2014 20:54:48 +0100 +Subject: [ABRT PATCH 6/6] post_report: always exit silenty + +Signed-off-by: Jakub Filak +--- + src/plugins/ccpp_event.conf | 1 + + src/plugins/koops_event.conf | 1 + + src/plugins/python_event.conf | 1 + + src/plugins/vmcore_event.conf | 1 + + 4 files changed, 4 insertions(+) + +diff --git a/src/plugins/ccpp_event.conf b/src/plugins/ccpp_event.conf +index 79b9a8a..ccc9e83 100644 +--- a/src/plugins/ccpp_event.conf ++++ b/src/plugins/ccpp_event.conf +@@ -95,6 +95,7 @@ EVENT=report_uReport analyzer=CCpp + # update ABRT database after successful report to bugzilla + EVENT=post_report analyzer=CCpp + reporter-ureport -A -B ++ exit 0 + + EVENT=analyze_CCpp analyzer=CCpp + abrt-action-perform-ccpp-analysis +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index 278d2a7..c0277c8 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -27,6 +27,7 @@ EVENT=report_uReport analyzer=Kerneloops + # Update ABRT database after successful report to bugzilla + EVENT=post_report analyzer=Kerneloops + reporter-ureport -A -B ++ exit 0 + + # Automatic/simple GUI-based kernel oopses reporting will do this: + EVENT=report-gui analyzer=Kerneloops +diff --git a/src/plugins/python_event.conf b/src/plugins/python_event.conf +index d872dfc..6a58252 100644 +--- a/src/plugins/python_event.conf ++++ b/src/plugins/python_event.conf +@@ -23,6 +23,7 @@ EVENT=report_uReport analyzer=Python + # update ABRT database after successful report to bugzilla + EVENT=post_report analyzer=Python + reporter-ureport -A -B ++ exit 0 + + # Reporting of python exceptions + EVENT=report-gui analyzer=Python component!=anaconda +diff --git a/src/plugins/vmcore_event.conf b/src/plugins/vmcore_event.conf +index 04eb3db..f8de3c5 100644 +--- a/src/plugins/vmcore_event.conf ++++ b/src/plugins/vmcore_event.conf +@@ -22,6 +22,7 @@ EVENT=report_Bugzilla analyzer=vmcore + # update ABRT database after successful report to bugzilla + EVENT=post_report analyzer=vmcore + reporter-ureport -A -B ++ exit 0 + + # Send micro report + EVENT=report_uReport analyzer=vmcore +-- +1.8.3.1 + diff --git a/SOURCES/0007-collect-installed-RPM-details-in-sosreport.patch b/SOURCES/0007-collect-installed-RPM-details-in-sosreport.patch new file mode 100644 index 0000000..c68d7f1 --- /dev/null +++ b/SOURCES/0007-collect-installed-RPM-details-in-sosreport.patch @@ -0,0 +1,28 @@ +From ff1247985a71c7f3313e73177ba28a88abf0591b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 14 Jan 2014 08:32:48 +0100 +Subject: [ABRT PATCH 7/7] collect installed RPM details in sosreport + +Closes rhbz#1048210 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt_event.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf +index 2aecb2a..8a8e862 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -72,7 +72,7 @@ EVENT=post-create + --only=anaconda --only=boot --only=devicemapper \ + --only=filesys --only=hardware --only=kernel --only=libraries \ + --only=memory --only=networking --only=nfsserver --only=pam \ +- --only=process --only=ssh \ ++ --only=process --only=rpm -k rpm.rpmva=off --only=ssh \ + --only=startup --only=yum --only=general --only=x11 \ + >sosreport.log 2>&1 \ + && { +-- +1.8.3.1 + diff --git a/SOURCES/0009-fix-a-double-free-error-in-abrt-applet.patch b/SOURCES/0009-fix-a-double-free-error-in-abrt-applet.patch new file mode 100644 index 0000000..e126797 --- /dev/null +++ b/SOURCES/0009-fix-a-double-free-error-in-abrt-applet.patch @@ -0,0 +1,55 @@ +From 3942edc6d48cf9946a190d6e81b5b122b90a1b72 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Jan 2014 12:58:03 +0100 +Subject: [ABRT PATCH 09/12] fix a double free error in abrt-applet + +Closes rhbz#1053534 + +Signed-off-by: Jakub Filak +--- + src/applet/applet.c | 8 +++++--- + 1 file changed, 5 insertions(+), 3 deletions(-) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index 17e1cfb..9971e04 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -890,7 +890,6 @@ static void notify_problem_list(GList *problems, int flags) + NOTIFY_ACTION_CALLBACK(action_ignore), + pi, NULL); + +- free(notify_body); + notify_body = build_message(pi); + + pi->was_announced = true; +@@ -950,7 +949,7 @@ static void notify_problem_list(GList *problems, int flags) + { + problem_info_free(pi); + g_object_unref(notification); +- continue; ++ goto next_problem_to_notify; + } + + notify_notification_update(notification, _("A Problem has been Reported"), notify_body, NULL); +@@ -965,7 +964,6 @@ static void notify_problem_list(GList *problems, int flags) + } + } + } +- free(notify_body); + + GError *err = NULL; + log_debug("Showing a notification"); +@@ -975,6 +973,10 @@ static void notify_problem_list(GList *problems, int flags) + error_msg(_("Can't show notification: %s"), err->message); + g_error_free(err); + } ++ ++next_problem_to_notify: ++ free(notify_body); ++ notify_body = NULL; + } + + g_list_free(problems); +-- +1.8.3.1 + diff --git a/SOURCES/0010-vmcore-properly-configure-Augeas.patch b/SOURCES/0010-vmcore-properly-configure-Augeas.patch new file mode 100644 index 0000000..5b4198f --- /dev/null +++ b/SOURCES/0010-vmcore-properly-configure-Augeas.patch @@ -0,0 +1,60 @@ +From 4c754657a3581b996ae540fbcbc261efd1f65ca2 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 16 Jan 2014 12:20:40 +0100 +Subject: [ABRT PATCH 10/12] vmcore: properly configure Augeas + +Configure Augeas to parse only required configuration files: +- /etc/mtab +- /ect/kdump.conf + +Related to rhbz#1054158 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt_harvest_vmcore.py.in | 16 ++++++++++++++-- + 1 file changed, 14 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index 64d6777..ecfb32d 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -17,6 +17,18 @@ import augeas + import problem + + ++def get_augeas(module, file_path): ++ """ ++ A function for efficient configuration of Augeas. ++ Augeas modules are placed in /usr/share/augeas/lenses/dist ++ """ ++ ++ aug_obj = augeas.Augeas(flags=augeas.Augeas.NO_MODL_AUTOLOAD) ++ aug_obj.set("/augeas/load/{0}/lens".format(module), "{0}.lns".format(module)) ++ aug_obj.set("/augeas/load/{0}/incl".format(module), file_path) ++ aug_obj.load() ++ return aug_obj ++ + def get_mount_point(part_id): + """ + A function used to look up a mount point in mtab using +@@ -26,7 +38,7 @@ def get_mount_point(part_id): + """ + + # look up the identifier in /etc/mtab +- result = augeas.Augeas().get("/files/etc/mtab/*" ++ result = get_augeas("Fstab", "/etc/mtab").get("/files/etc/mtab/*" + "[spec=\"" + part_id + "\"]/file") + if result: + return result +@@ -53,7 +65,7 @@ def parse_kdump(): + "default path '%s'\n" % dump_path) + return dump_path + +- aug_obj = augeas.Augeas() ++ aug_obj = get_augeas("Kdump", "/etc/kdump.conf") + # check for path variable in kdump.conf + kdump_path = aug_obj.get("/files/etc/kdump.conf/path") + if kdump_path: +-- +1.8.3.1 + diff --git a/SOURCES/0011-applet-don-t-notify-missing-ignored_problems-file.patch b/SOURCES/0011-applet-don-t-notify-missing-ignored_problems-file.patch new file mode 100644 index 0000000..31d730d --- /dev/null +++ b/SOURCES/0011-applet-don-t-notify-missing-ignored_problems-file.patch @@ -0,0 +1,29 @@ +From 85913f428fc4195dc26e1789c44985be718b2c7a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 16 Jan 2014 10:54:27 +0100 +Subject: [ABRT PATCH 11/12] applet: don't notify missing ignored_problems file + +Closes rhbz#1054291 + +Signed-off-by: Jakub Filak +--- + src/lib/ignored_problems.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/lib/ignored_problems.c b/src/lib/ignored_problems.c +index 7ea84b4..df138d8 100644 +--- a/src/lib/ignored_problems.c ++++ b/src/lib/ignored_problems.c +@@ -97,7 +97,8 @@ static bool ignored_problems_file_contains(ignored_problems_t *set, + FILE *fp = fopen(set->ign_set_file_path, mode); + if (!fp) + { +- pwarn_msg("Can't open ignored problems '%s' in mode '%s'", set->ign_set_file_path, mode); ++ if (errno != ENOENT) ++ pwarn_msg("Can't open ignored problems '%s' in mode '%s'", set->ign_set_file_path, mode); + goto ret_contains_end; + } + +-- +1.8.3.1 + diff --git a/SOURCES/0012-configui-show-Close-button-in-the-dialog.patch b/SOURCES/0012-configui-show-Close-button-in-the-dialog.patch new file mode 100644 index 0000000..94b76b0 --- /dev/null +++ b/SOURCES/0012-configui-show-Close-button-in-the-dialog.patch @@ -0,0 +1,129 @@ +From 8e31dd5a50c0236ea5853892d05e3376f061ee23 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 9 Jan 2014 21:18:37 +0100 +Subject: [ABRT PATCH 12/12] configui: show 'Close' button in the dialog + +Closes rhbz#1050167 + +Signed-off-by: Jakub Filak +--- + src/configuration-gui/main.c | 10 ++++++- + src/configuration-gui/system-config-abrt.c | 45 +++++++++++++++++++++++++++++- + 2 files changed, 53 insertions(+), 2 deletions(-) + +diff --git a/src/configuration-gui/main.c b/src/configuration-gui/main.c +index b07b852..bd37ef9 100644 +--- a/src/configuration-gui/main.c ++++ b/src/configuration-gui/main.c +@@ -22,6 +22,12 @@ + + #define APP_NAME "System Config ABRT" + ++static void ++system_config_abrt_window_close_cb(gpointer user_data) ++{ ++ gtk_widget_destroy(GTK_WIDGET(user_data)); ++} ++ + static GtkWidget * + system_config_abrt_window_new(GApplication *app) + { +@@ -29,7 +35,9 @@ system_config_abrt_window_new(GApplication *app) + gtk_window_set_default_size(GTK_WINDOW(wnd), 500, 300); + gtk_window_set_title(GTK_WINDOW(wnd), _("Problem Reporting Configuration")); + +- GtkWidget *sca = system_config_abrt_widget_new(); ++ GtkWidget *sca = system_config_abrt_widget_new_with_close_button( ++ system_config_abrt_window_close_cb, wnd); ++ + gtk_container_add(GTK_CONTAINER(wnd), sca); + + return wnd; +diff --git a/src/configuration-gui/system-config-abrt.c b/src/configuration-gui/system-config-abrt.c +index 4638dd6..b15a5ef 100644 +--- a/src/configuration-gui/system-config-abrt.c ++++ b/src/configuration-gui/system-config-abrt.c +@@ -24,6 +24,15 @@ + #define CLOSE_BUTTON_DATA_NAME_USER_DATA "my-close-user-data" + + static void ++system_config_abrt_close_btn_cb(GtkButton *button, gpointer user_data) ++{ ++ system_config_abrt_widget_close_callback callback = g_object_get_data(G_OBJECT(button), CLOSE_BUTTON_DATA_NAME_CALLBACK); ++ gpointer callback_user_data = g_object_get_data(G_OBJECT(button), CLOSE_BUTTON_DATA_NAME_USER_DATA); ++ ++ callback(callback_user_data); ++} ++ ++static void + system_config_abrt_defaults_cb(GtkButton *button, gpointer user_data) + { + AbrtConfigWidget *config = ABRT_CONFIG_WIDGET(user_data); +@@ -32,6 +41,12 @@ system_config_abrt_defaults_cb(GtkButton *button, gpointer user_data) + + GtkWidget *system_config_abrt_widget_new(void) + { ++ return system_config_abrt_widget_new_with_close_button(/*no close button*/NULL, ++ /*no user data*/NULL); ++} ++ ++GtkWidget *system_config_abrt_widget_new_with_close_button(system_config_abrt_widget_close_callback close_cb, gpointer user_data) ++{ + GtkBox *box = GTK_BOX(gtk_box_new(GTK_ORIENTATION_VERTICAL, /*spacing*/0)); + + AbrtConfigWidget *config = abrt_config_widget_new(); +@@ -55,6 +70,17 @@ GtkWidget *system_config_abrt_widget_new(void) + gtk_widget_set_margin_top(buttons, 10); + gtk_widget_set_margin_bottom(buttons, 10); + ++ if (close_cb != NULL) ++ { ++ GtkWidget *btn_close = gtk_button_new_with_mnemonic(_("_Close")); ++ gtk_box_pack_end(GTK_BOX(buttons), btn_close, /*expand*/FALSE, /*fill*/FALSE, /*padding*/0); ++ ++ g_object_set_data(G_OBJECT(btn_close), CLOSE_BUTTON_DATA_NAME_CALLBACK, close_cb); ++ g_object_set_data(G_OBJECT(btn_close), CLOSE_BUTTON_DATA_NAME_USER_DATA, user_data); ++ ++ g_signal_connect(btn_close, "clicked", G_CALLBACK(system_config_abrt_close_btn_cb), /*user_data*/NULL); ++ } ++ + GtkWidget *btn_defaults = gtk_button_new_with_mnemonic(_("_Defaults")); + gtk_box_pack_start(GTK_BOX(buttons), btn_defaults, /*expand*/FALSE, /*fill*/FALSE, /*padding*/0); + g_signal_connect(btn_defaults, "clicked", G_CALLBACK(system_config_abrt_defaults_cb), config); +@@ -64,6 +90,19 @@ GtkWidget *system_config_abrt_widget_new(void) + return GTK_WIDGET(box); + } + ++static void ++system_config_abrt_dialog_close_cb(gpointer user_data) ++{ ++ gtk_widget_destroy(GTK_WIDGET(user_data)); ++} ++ ++static gboolean ++system_config_abrt_dialog_delete_event(GtkWidget *dialog, GdkEvent *event, gpointer user_data) ++{ ++ system_config_abrt_dialog_close_cb(dialog); ++ return TRUE; /*do not propagate the event*/ ++} ++ + void show_system_config_abrt_dialog(GtkWindow *parent) + { + GtkWidget *dialog = gtk_dialog_new(); +@@ -79,8 +118,12 @@ void show_system_config_abrt_dialog(GtkWindow *parent) + gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE); + } + ++ /* Have to handle this signal, which is emitted on Esc or Alt+F4, otherwise */ ++ /* the user must commit the action twice to take effect. */ ++ g_signal_connect(dialog, "delete-event", G_CALLBACK(system_config_abrt_dialog_delete_event), /*user_data*/NULL); ++ + GtkWidget *content = gtk_dialog_get_content_area(GTK_DIALOG(dialog)); +- GtkWidget *sca = system_config_abrt_widget_new(); ++ GtkWidget *sca = system_config_abrt_widget_new_with_close_button(system_config_abrt_dialog_close_cb, dialog); + gtk_box_pack_start(GTK_BOX(content), sca, /*expand*/TRUE, /*fill*/TRUE, /*padding*/0); + + gtk_widget_show_all(content); +-- +1.8.3.1 + diff --git a/SOURCES/0013-applet-do-not-say-the-report-is-anonymous-when-urepo.patch b/SOURCES/0013-applet-do-not-say-the-report-is-anonymous-when-urepo.patch new file mode 100644 index 0000000..a0315e4 --- /dev/null +++ b/SOURCES/0013-applet-do-not-say-the-report-is-anonymous-when-urepo.patch @@ -0,0 +1,117 @@ +From cafb9545c0e251b8ece493a341e7b209bde00a11 Mon Sep 17 00:00:00 2001 +From: Martin Milata +Date: Mon, 20 Jan 2014 15:24:31 +0100 +Subject: [ABRT PATCH 13/13] applet: do not say the report is anonymous when + ureport auth is enabled + +Depends on https://github.com/abrt/libreport/pull/232 + +Related to rhbz#1053042, rhbz#1055619. + +Signed-off-by: Martin Milata +--- + configure.ac | 2 ++ + src/applet/Makefile.am | 1 + + src/applet/applet.c | 43 +++++++++++++++++++++++++++++++++++++++---- + 3 files changed, 42 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index a5f7a79..479289c 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -139,6 +139,7 @@ EVENTS_DIR='${datadir}/libreport/events' + EVENTS_CONF_DIR='${sysconfdir}/libreport/events.d' + ENABLE_SOCKET_OR_DBUS='-DENABLE_DBUS=1' + DEFAULT_DUMP_DIR_MODE=$($PKG_CONFIG --variable=dd_mode libreport) ++LIBREPORT_PLUGINS_CONF_DIR=$($PKG_CONFIG --variable=plugins_conf_dir libreport) + PROBLEMS_CONFIG_INTERFACES_DIR=${dbusinterfacedir} + + AC_ARG_WITH([defaultdumplocation], +@@ -226,6 +227,7 @@ AC_SUBST(EVENTS_CONF_DIR) + AC_SUBST(EVENTS_DIR) + AC_SUBST(DEFAULT_DUMP_LOCATION) + AC_SUBST(DEFAULT_DUMP_DIR_MODE) ++AC_SUBST(LIBREPORT_PLUGINS_CONF_DIR) + AC_SUBST(PROBLEMS_CONFIG_INTERFACES_DIR) + + AC_ARG_WITH(bodhi, +diff --git a/src/applet/Makefile.am b/src/applet/Makefile.am +index ec50fcd..fe7ec98 100644 +--- a/src/applet/Makefile.am ++++ b/src/applet/Makefile.am +@@ -9,6 +9,7 @@ abrt_applet_CPPFLAGS = \ + -DBIN_DIR=\"$(bindir)\" \ + -DLIBEXEC_DIR=\"$(libexecdir)\" \ + -DICON_DIR=\"${datadir}/abrt/icons/hicolor/48x48/status\" \ ++ -DLIBREPORT_PLUGINS_CONF_DIR=\"$(LIBREPORT_PLUGINS_CONF_DIR)\" \ + $(XICE_CFLAGS) \ + $(XSMP_CFLAGS) \ + $(GTK_CFLAGS) \ +diff --git a/src/applet/applet.c b/src/applet/applet.c +index 9971e04..131d2ab 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -90,6 +90,27 @@ static bool is_autoreporting_enabled(void) + return get_configured_bool_or_default("AutoreportingEnabled", g_settings_autoreporting); + } + ++static bool is_ureport_auth_enabled(void) ++{ ++ bool success, auth_enabled; ++ map_string_t *settings = new_map_string(); ++ char *ureport_conf_path = concat_path_file(LIBREPORT_PLUGINS_CONF_DIR, "ureport.conf"); ++ ++ success = load_conf_file(ureport_conf_path, settings, /*skipKeysWithoutValue*/false); ++ if (success) ++ { ++ const char *value = get_map_string_item_or_NULL(settings, "SSLClientAuth"); ++ auth_enabled = (value && value[0] != '\0'); ++ } ++ else ++ auth_enabled = true; /* assume it is, do not claim the reporting is anonymous */ ++ ++ free(ureport_conf_path); ++ free_map_string(settings); ++ ++ return auth_enabled; ++} ++ + static const char *get_autoreport_event_name(void) + { + load_user_settings("abrt-applet"); +@@ -99,14 +120,28 @@ static const char *get_autoreport_event_name(void) + + static void ask_start_autoreporting() + { ++ struct strbuf *question = strbuf_new(); ++ question = strbuf_append_str(question, ++ _("The report which will be sent does not contain any security sensitive data. " ++ "Therefore it is not necessary to bother you next time and require any further action by you. \n")); ++ ++ if (is_ureport_auth_enabled()) ++ { ++ question = strbuf_append_str(question, ++ _("Do you want to enable automatically submitted crash reports?")); ++ } ++ else ++ { ++ question = strbuf_append_str(question, ++ _("Do you want to enable automatically submitted anonymous crash reports?")); ++ } ++ + /* The "Yes" response will be saved even if user don't check the + * "Don't ask me again" box. + */ +- const int ret = run_ask_yes_no_save_result_dialog("AutoreportingEnabled", +- _("The report which will be sent does not contain any security sensitive data. " +- "Therefore it is not necessary to bother you next time and require any further action by you. " +- "\nDo you want to enable automatically submitted anonymous crash reports?"), ++ const int ret = run_ask_yes_no_save_result_dialog("AutoreportingEnabled", question->buf, + /*parent wnd */ NULL); ++ strbuf_free(question); + + load_user_settings("abrt-applet"); + +-- +1.8.3.1 + diff --git a/SOURCES/0016-cli-list-show-a-hint-about-creating-a-case-in-RHTS.patch b/SOURCES/0016-cli-list-show-a-hint-about-creating-a-case-in-RHTS.patch new file mode 100644 index 0000000..61183ed --- /dev/null +++ b/SOURCES/0016-cli-list-show-a-hint-about-creating-a-case-in-RHTS.patch @@ -0,0 +1,112 @@ +From 7966e5737e8d3af43b1ecdd6a823234b8d25931d Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 22 Jan 2014 22:16:22 +0100 +Subject: [ABRT PATCH 16/16] cli list: show a hint about creating a case in + RHTS + +Resolves rhbz#1055565 + +Signed-off-by: Jakub Filak +--- + configure.ac | 2 ++ + src/cli/Makefile.am | 3 ++- + src/cli/list.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 53 insertions(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index 479289c..3bd13bc 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -137,6 +137,7 @@ PLUGINS_CONF_DIR='${sysconfdir}/${PACKAGE_NAME}/plugins' + DEFAULT_PLUGINS_CONF_DIR='${datadir}/${PACKAGE_NAME}/conf.d/plugins' + EVENTS_DIR='${datadir}/libreport/events' + EVENTS_CONF_DIR='${sysconfdir}/libreport/events.d' ++WORKFLOWS_DIR='${datadir}/libreport/workflows' + ENABLE_SOCKET_OR_DBUS='-DENABLE_DBUS=1' + DEFAULT_DUMP_DIR_MODE=$($PKG_CONFIG --variable=dd_mode libreport) + LIBREPORT_PLUGINS_CONF_DIR=$($PKG_CONFIG --variable=plugins_conf_dir libreport) +@@ -224,6 +225,7 @@ AC_SUBST(VAR_RUN) + AC_SUBST(PLUGINS_CONF_DIR) + AC_SUBST(DEFAULT_PLUGINS_CONF_DIR) + AC_SUBST(EVENTS_CONF_DIR) ++AC_SUBST(WORKFLOWS_DIR) + AC_SUBST(EVENTS_DIR) + AC_SUBST(DEFAULT_DUMP_LOCATION) + AC_SUBST(DEFAULT_DUMP_DIR_MODE) +diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am +index 5b840ee..75efac5 100644 +--- a/src/cli/Makefile.am ++++ b/src/cli/Makefile.am +@@ -15,7 +15,8 @@ abrt_cli_SOURCES = $(CLI_C) $(BUILTIN_C) builtin-cmd.h abrt-cli-core.h + abrt_cli_CFLAGS = \ + -I$(srcdir)/../include \ + -I$(srcdir)/../lib \ +- $(LIBREPORT_CFLAGS) ++ $(LIBREPORT_CFLAGS) \ ++ -DWORKFLOWS_DIR=\"${WORKFLOWS_DIR}\" + + if SUGGEST_AUTOREPORTING + abrt_cli_CFLAGS += -DSUGGEST_AUTOREPORTING=1 +diff --git a/src/cli/list.c b/src/cli/list.c +index 2eefcfe..b6b4790 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -80,6 +80,55 @@ static void print_crash(problem_data_t *problem_data, int detailed, int text_siz + /*names_to_skip:*/ NULL, + /*max_text_size:*/ text_size, + MAKEDESC_SHOW_ONLY_LIST | MAKEDESC_SHOW_URLS); ++ ++ /* ++ * If the problem is reportable and has not yet been reported into RHTS ++ * and there is at least one applicable Workflow which contains ++ * 'report_RHTSupport' event, then append a short message informing ++ * user that he can create a new case in Red Hat Customer Portal. ++ */ ++ const char *const not_reportable = problem_data_get_content_or_NULL(problem_data, FILENAME_NOT_REPORTABLE); ++ const char *const reported_to = not_reportable ? NULL : problem_data_get_content_or_NULL(problem_data, FILENAME_REPORTED_TO); ++ report_result_t *const report = !reported_to ? NULL : find_in_reported_to_data(reported_to, "RHTSupport"); ++ ++ if (!not_reportable && !report) ++ { ++ /* The lines below should be replaced by something simpler, I'd ++ * like to see: ++ * GHashTable *possible_worfklows = load_applicable_workflows_for_dump(); ++ * ++ * However, this feature (rhbz#1055565) is intended for RHEL only ++ * and I'm not sure whether it's worth to file another bug against ++ * libreport and try to improve libreport public API. ++ */ ++ const char *const dump_dir_name = problem_data_get_content_or_NULL(problem_data, CD_DUMPDIR); ++ GList *const wf_names = list_possible_events_glist(dump_dir_name, "workflow"); ++ GHashTable *const possible_workflows = load_workflow_config_data_from_list(wf_names, WORKFLOWS_DIR); ++ g_list_free_full(wf_names, free); ++ ++ int event_found = 0; ++ ++ GHashTableIter iter; ++ gpointer key = NULL; ++ gpointer value = NULL; ++ ++ g_hash_table_iter_init(&iter, possible_workflows); ++ while (!event_found && g_hash_table_iter_next(&iter, &key, &value)) ++ { ++ GList *const event_names = wf_get_event_names((workflow_t *)value); ++ event_found = !!g_list_find_custom(event_names, "report_RHTSupport", (GCompareFunc)g_strcmp0); ++ g_list_free_full(event_names, free); ++ } ++ ++ g_hash_table_destroy(possible_workflows); ++ ++ if (event_found) ++ { ++ char *tmp = xasprintf("%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n", desc, dump_dir_name); ++ free(desc); ++ desc = tmp; ++ } ++ } + } + fputs(desc, stdout); + free(desc); +-- +1.8.3.1 + diff --git a/SOURCES/0017-harvest-vmcore-properly-handle-inaccessible-dir-erro.patch b/SOURCES/0017-harvest-vmcore-properly-handle-inaccessible-dir-erro.patch new file mode 100644 index 0000000..d691825 --- /dev/null +++ b/SOURCES/0017-harvest-vmcore-properly-handle-inaccessible-dir-erro.patch @@ -0,0 +1,63 @@ +From f0f9bb1e9ab024da1ab4f9311164294404f536df Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 27 Jan 2014 10:29:32 +0100 +Subject: [ABRT PATCH 17/27] harvest-vmcore: properly handle inaccessible dir + error + +Related to rhbz#1032511 + +rmarko: added missing newlines to sys.stderr.write calls + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt_harvest_vmcore.py.in | 19 ++++++++++++++----- + 1 file changed, 14 insertions(+), 5 deletions(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index ecfb32d..17e2be8 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -231,10 +231,19 @@ def harvest_vmcore(): + f_full = os.path.join(dump_dir, cfile) + if not os.path.isdir(f_full): + continue +- files = [ff for ff in os.listdir(f_full) +- if os.path.isfile(os.path.join(f_full, ff))] +- if 'vmcore' not in files: ++ ++ try: ++ vmcoredirfilelist = os.listdir(f_full) ++ except OSError as ex: ++ sys.stderr.write("VMCore dir '%s' not accessible.\n" % f_full) + continue ++ else: ++ if all(("vmcore" != ff ++ for ff in vmcoredirfilelist ++ if os.path.isfile(os.path.join(f_full, ff)))): ++ sys.stderr.write( ++ "VMCore dir '%s' doesn't contain 'vmcore' file.\n" % f_full) ++ continue + + destdir = os.path.join(abrtdumpdir, ('vmcore-' + cfile)) + destdirnew = destdir + '.new' +@@ -250,7 +259,7 @@ def harvest_vmcore(): + try: + shutil.copytree(f_full, destdirnew) + except (OSError, shutil.Error): +- sys.stderr.write("Unable to copy '%s' to '%s'. Skipping" ++ sys.stderr.write("Unable to copy '%s' to '%s'. Skipping\n" + % (f_full, destdirnew)) + + # delete .new dir so we don't create mess +@@ -261,7 +270,7 @@ def harvest_vmcore(): + try: + shutil.rmtree(f_full) + except OSError: +- sys.stderr.write("Unable to delete '%s'. Ignoring" % f_full) ++ sys.stderr.write("Unable to delete '%s'. Ignoring\n" % f_full) + + # Let abrtd know what type of problem it is: + create_abrtd_info(destdirnew) +-- +1.8.3.1 + diff --git a/SOURCES/0018-don-t-break-the-event-run-by-failures-of-abrt-action.patch b/SOURCES/0018-don-t-break-the-event-run-by-failures-of-abrt-action.patch new file mode 100644 index 0000000..decaf3e --- /dev/null +++ b/SOURCES/0018-don-t-break-the-event-run-by-failures-of-abrt-action.patch @@ -0,0 +1,105 @@ +From e6b19714485e72be99a9fcce62cd3a8a0e95808f Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 24 Jan 2014 14:26:02 +0100 +Subject: [ABRT PATCH 18/27] don't break the event run by failures of + abrt-action-notify + +Closes #789 +Closes rhbz#1057710 + +rmarko: add newlines to sys.stderr.write calls + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt_event.conf | 2 ++ + src/plugins/abrt-action-notify | 48 ++++++++++++++++++++++++------------------ + 2 files changed, 30 insertions(+), 20 deletions(-) + +diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf +index 8a8e862..fe9c3d5 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -104,7 +104,9 @@ EVENT=open-gui + # Notify a new crash + EVENT=notify package!= + abrt-action-notify -d $DUMP_DIR ++ true # ignore failures because we want to run all 'notify' events + + # Notify a new occurrence of a single crash + EVENT=notify-dup package!= + abrt-action-notify -d $DUMP_DIR ++ true # ignore failures because we want to run all 'notify' events +diff --git a/src/plugins/abrt-action-notify b/src/plugins/abrt-action-notify +index 72bfbf8..cbabf74 100644 +--- a/src/plugins/abrt-action-notify ++++ b/src/plugins/abrt-action-notify +@@ -216,17 +216,22 @@ if __name__ == "__main__": + format(DIR_PATH, ex.message)) + sys.exit(RETURN_FAILURE) + ++ # The execution must continue because we should try to notify via all ++ # configured channels. One of them might work properly. ++ return_status = RETURN_OK + try: + emit_crash_dbus_signal(PD) + except RuntimeError as ex: +- sys.stderr.write("Cannot notify '{0}': {1}\n". ++ sys.stderr.write("Cannot notify '{0}' via D-Bus: {1}\n". + format(DIR_PATH, ex.message)) +- sys.exit(RETURN_FAILURE) ++ return_status = RETURN_FAILURE + except KeyError as ex: + # this is a bug in build_notification_problem_data() + sys.stderr.write("BUG: problem data misses required element '{0}'" +- .format(ex.message)) +- sys.exit(RETURN_FAILURE) ++ " required for D-Bus notification\n" ++ .format(ex.message)) ++ ++ return_status = RETURN_FAILURE + + if OPTIONS.autoreporting or conf.get("AutoreportingEnabled", "no") == "yes": + event_name = OPTIONS.autoreporting_event +@@ -234,20 +239,23 @@ if __name__ == "__main__": + if "AutoreportingEvent" in conf: + event_name = conf["AutoreportingEvent"] + else: +- sys.stderr.write("Autoreporting event is not configured") +- sys.exit(RETURN_FAILURE) +- +- try: +- run_autoreport(PD, event_name) +- except RuntimeError as ex: +- sys.stderr.write("Cannot notify '{0}': {1}\n". +- format(DIR_PATH, ex.message)) +- sys.exit(RETURN_FAILURE) +- except KeyError as ex: +- # this is a bug in build_notification_problem_data() +- sys.stderr.write("BUG: problem data misses required element '{0}'" +- .format(ex.message)) +- sys.exit(RETURN_FAILURE) +- +- sys.exit(RETURN_OK) ++ sys.stderr.write("Autoreporting event is not configured\n") ++ return_status = RETURN_FAILURE ++ ++ if event_name: ++ try: ++ run_autoreport(PD, event_name) ++ except RuntimeError as ex: ++ sys.stderr.write("Cannot notify '{0}' via uReport: {1}\n". ++ format(DIR_PATH, ex.message)) ++ return_status = RETURN_FAILURE ++ except KeyError as ex: ++ # this is a bug in build_notification_problem_data() ++ sys.stderr.write( ++ "BUG: problem data misses required element '{0}'" ++ " required for uReport notification\n".format(ex.message)) ++ ++ return_status = RETURN_FAILURE ++ ++ sys.exit(return_status) + +-- +1.8.3.1 + diff --git a/SOURCES/0019-Fix-handling-of-Machine-Check-Exceptions.patch b/SOURCES/0019-Fix-handling-of-Machine-Check-Exceptions.patch new file mode 100644 index 0000000..c145946 --- /dev/null +++ b/SOURCES/0019-Fix-handling-of-Machine-Check-Exceptions.patch @@ -0,0 +1,198 @@ +From 744e4c6a6cbbb9ba0569bf8e3ab50171e974b2e3 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Mon, 6 Jan 2014 17:18:31 +0100 +Subject: [ABRT PATCH 19/27] Fix handling of Machine Check Exceptions. + +Closes #764. + +If non-fatal MCE is seen, abrt will detect it as an oops +and alert user in a usual manner. When user opens this +abrt problem for reporting, he will see that "comment" +field is pre-filled with a text. +What it says depends on whether mcelog tool is installed. +If mcelog is installed, the text will say that hardware errors +were detected, and will show the tail of either /var/log/mcelog +or syslog. +Otherwise the text will say that hardware errors +were detected, but they can't be usefully diagnosed, +and user is strongly advised to install mcelog tool. + +If fatal MCE is encountered, kernel always panics, +(abrt has no chance of catching the oops), +kdump kicks in, and then after reboot abrt says that new vmcore +is found. When user generates backtrace, he will see oops text +which starts with +"Machine Check Exception: BANK nnn ..." and (hopefully) +is already explanatory enough. + +(Yes, it's weird that kernel shows human-readable error messages +on fatal MCEs but doesn't do that for non-fatal ones. +This makes fetching MCE info significantly different... +I wish kernel would show human-readable MCEs in both cases, +we wouldn't need mcelog then... oh well.) + +In order to generate meaningful hash for MCE's, +oops hashing was extended for oopses without backtraces. + +Since MCEs, unlike regular oopses, don't contain kernel version, +additional magic is added to extract kernel version +in vmcore event handling. + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + src/lib/kernel.c | 31 +++++++++++++++++++++++++ + src/plugins/koops_event.conf | 54 +++++++++++++++++++++++++++++++++++++++++++ + src/plugins/vmcore_event.conf | 18 ++++++++++++++- + 3 files changed, 102 insertions(+), 1 deletion(-) + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index ce8815b..340ec39 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -115,8 +115,29 @@ static const char *const s_koops_suspicious_strings[] = { + * arch/x86/kernel/cpu/mcheck/p5.c: "CPU#%d: Machine Check Exception: 0x%8X (type 0x%8X).\n", + * arch/x86/kernel/cpu/mcheck/mce.c: pr_emerg(HW_ERR "CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n", + * drivers/edac/sb_edac.c: printk("CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n", ++ * ++ * MCEs can be fatal (they panic kernel) or not. ++ * Fatal MCE are delivered as exception#18 to the CPU. ++ * Non-fatal ones sometimes are delivered as exception#18; ++ * other times they are silently recorded in magic MSRs, CPU is not alerted. ++ * Linux kernel periodically (up to 5 mins interval) reads those MSRs ++ * and if MCE is seen there, it is piped in binary form through ++ * /dev/mcelog to whoever listens on it. (Such as mcelog tool in --daemon ++ * mode; but cat 8 + && ( (curline[0] == '(' && curline[1] == '[' && curline[2] == '<') + || (curline[0] == '[' && curline[1] == '<')) +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index c0277c8..7dfbe36 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -4,6 +4,60 @@ EVENT=post-create analyzer=Kerneloops + abrt-action-analyze-oops && + dmesg >>dmesg && + abrt-action-save-kernel-data ++ abrt-action-save-kernel-data || exit $? ++ # ++ # If it exists, we can save a copy of MCE log here: ++ #test -f /var/log/mcelog && cp /var/log/mcelog . ++ # but in current config, sosreport already does that. ++ # ++ # See if MCEs were seen but mcelog isn't installed or running ++ grep -qFi 'Machine check events logged' dmesg || exit 0 ++ # ++ # There was an MCE. IOW: it's not a bug, it's a HW error. ++ # Did mcelog logged it to /var/log/mcelog ++ # (RHEL6 by default does this)? ++ test -f /var/log/mcelog && ++ { ++ # (Ab)use user comment field to inform user about it. ++ echo "The kernel log indicates that hardware errors were detected." ++ echo "/var/log/mcelog file may have more information." ++ echo "The last 20 lines of /var/log/mcelog are:" ++ echo "=========================================" ++ # Redirecting sterr in case selinux makes it unreadable ++ # (annoying anyway, but at least user knows what's going on): ++ tail -n20 /var/log/mcelog 2>&1 ++ exit 0 ++ } >comment ++ # ++ # On RHEL7, mcelog is run so that its output ends up in syslog. ++ # Do we see that? ++ grep -qFi 'mcelog: Hardware event' /var/log/messages && ++ { ++ echo "The kernel log indicates that hardware errors were detected." ++ echo "System log may have more information." ++ echo "The last 20 mcelog lines of system log are:" ++ echo "=========================================" ++ # Redirecting sterr in case selinux makes it unreadable ++ # (annoying anyway, but at least user knows what's going on): ++ grep -Fi 'mcelog:' /var/log/messages | tail -n20 2>&1 ++ exit 0 ++ } >comment ++ # ++ # Apparently, there is no running mcelog daemon! ++ # Let user know that he needs one. ++ { ++ echo "The kernel log indicates that hardware errors were detected." ++ echo "The data was saved by kernel for processing by the mcelog tool." ++ echo "However, neither /var/log/mcelog nor system log contain mcelog messages." ++ echo "Most likely reason is that mcelog is not installed or not configured" ++ echo "to be started during boot." ++ echo "Without this tool running, the binary data saved by kernel" ++ echo "is of limited usefulness." ++ echo "(You can save this data anyway by running 'cat FILE')." ++ echo "The recommended course of action is to install mcelog." ++ echo "If another hardware error would occur, a user-readable description" ++ echo "of it will be saved in system log or /var/log/mcelog." ++ } >comment + + # If you want behavior similar to one provided by kerneloops daemon + # distributed by kerneloops.org - that is, if you want +diff --git a/src/plugins/vmcore_event.conf b/src/plugins/vmcore_event.conf +index f8de3c5..655d842 100644 +--- a/src/plugins/vmcore_event.conf ++++ b/src/plugins/vmcore_event.conf +@@ -1,6 +1,22 @@ + # analyze + EVENT=analyze_VMcore analyzer=vmcore +- abrt-action-analyze-vmcore && ++ # If kdump machinery already extracted dmesg... ++ if test -f vmcore-dmesg.txt; then ++ # ...use that ++ abrt-dump-oops -o vmcore-dmesg.txt >backtrace || exit $? ++ # ++ # Does "kernel" element exist? ++ test -f kernel && exit 0 ++ # ++ # Try creating it from vmcore-dmesg.txt: ++ # MCE oopses don't have kernel version in them, ++ # but it should be specified earlier in the log. ++ k=`sed -n '/Linux version/ s/.*Linux version \([^ ]*\) .*/\1/p' vmcore-dmesg.txt | tail -n1` ++ test "$k" != "" && printf "%s" "$k" >kernel ++ else ++ # No vmcore-dmesg.txt, do it the hard way: ++ abrt-action-analyze-vmcore ++ fi && + abrt-action-analyze-oops && + abrt-action-save-kernel-data + +-- +1.8.3.1 + diff --git a/SOURCES/0020-move-MCE-handling-in-event-to-abrt-action-check-oops.patch b/SOURCES/0020-move-MCE-handling-in-event-to-abrt-action-check-oops.patch new file mode 100644 index 0000000..b6b38bd --- /dev/null +++ b/SOURCES/0020-move-MCE-handling-in-event-to-abrt-action-check-oops.patch @@ -0,0 +1,282 @@ +From d3ac6c888953d0bcd304d30dfa0f1c731987f358 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Mon, 6 Jan 2014 16:46:48 +0100 +Subject: [ABRT PATCH 20/27] move MCE handling in event to + abrt-action-check-oops-for-hw-error + +Having a separate tool should help with internationalization + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + configure.ac | 1 + + doc/Makefile.am | 1 + + po/POTFILES.in | 1 + + src/plugins/Makefile.am | 3 + + src/plugins/abrt-action-check-oops-for-hw-error.in | 118 +++++++++++++++++++++ + src/plugins/koops_event.conf | 57 +--------- + 8 files changed, 129 insertions(+), 55 deletions(-) + create mode 100644 src/plugins/abrt-action-check-oops-for-hw-error.in + +diff --git a/configure.ac b/configure.ac +index 3bd13bc..346faa8 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -279,6 +279,7 @@ AC_CONFIG_FILES([ + src/dbus/Makefile + src/plugins/abrt-action-install-debuginfo + src/plugins/abrt-action-analyze-vmcore ++ src/plugins/abrt-action-check-oops-for-hw-error + src/python-problem/Makefile + src/python-problem/doc/Makefile + src/python-problem/tests/Makefile +diff --git a/doc/Makefile.am b/doc/Makefile.am +index f1abef8..e76abde 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -32,6 +32,7 @@ MAN1_TXT += abrt-action-save-package-data.txt + MAN1_TXT += abrt-action-save-kernel-data.txt + MAN1_TXT += abrt-install-ccpp-hook.txt + MAN1_TXT += abrt-action-analyze-vmcore.txt ++MAN1_TXT += abrt-action-check-oops-for-hw-error.txt + MAN1_TXT += abrt-action-analyze-ccpp-local.txt + MAN1_TXT += abrt-watch-log.txt + MAN1_TXT += abrt-upload-watch.txt +diff --git a/po/POTFILES.in b/po/POTFILES.in +index 5f883c0..6d90162 100644 +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -25,6 +25,7 @@ src/plugins/abrt-action-analyze-oops.c + src/plugins/abrt-action-analyze-xorg.c + src/plugins/abrt-action-analyze-python.c + src/plugins/abrt-action-analyze-vmcore.in ++src/plugins/abrt-action-check-oops-for-hw-error.in + src/plugins/abrt-action-generate-backtrace.c + src/plugins/abrt-action-generate-core-backtrace.c + src/plugins/abrt-action-install-debuginfo.in +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index 60246f2..dd32c7d 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -5,6 +5,7 @@ bin_SCRIPTS = \ + abrt-action-analyze-core \ + abrt-action-analyze-vulnerability \ + abrt-action-analyze-vmcore \ ++ abrt-action-check-oops-for-hw-error \ + abrt-action-list-dsos \ + abrt-action-perform-ccpp-analysis \ + abrt-action-save-kernel-data \ +@@ -74,6 +75,7 @@ PYTHON_FILES = \ + abrt-action-analyze-core \ + abrt-action-analyze-vulnerability \ + abrt-action-analyze-vmcore.in \ ++ abrt-action-check-oops-for-hw-error.in \ + abrt-action-perform-ccpp-analysis.in \ + abrt-action-notify + +@@ -88,6 +90,7 @@ EXTRA_DIST = \ + analyze_RetraceServer.xml.in \ + analyze_VMcore.xml.in \ + abrt-action-analyze-vmcore \ ++ abrt-action-check-oops-for-hw-error \ + abrt-action-save-kernel-data \ + abrt-action-ureport \ + abrt-gdb-exploitable \ +diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in +new file mode 100644 +index 0000000..83c0f22 +--- /dev/null ++++ b/src/plugins/abrt-action-check-oops-for-hw-error.in +@@ -0,0 +1,118 @@ ++#!/usr/bin/python -u ++ ++import sys ++import os ++import locale ++import gettext ++ ++GETTEXT_PROGNAME = "abrt" ++ ++_ = gettext.lgettext ++ ++def file_has_string(filename, string): ++ try: ++ f = open(filename, "r") ++ except IOError as e: ++ #print e ++ return False ++ for line in f: ++ if string in line: ++ f.close() ++ return True ++ f.close() ++ return False ++ ++ ++def tail_with_search(filename, string, maxlen): ++ try: ++ f = open(filename, "r") ++ except IOError as e: ++ #print e ++ return [] ++ l = [] ++ for line in f: ++ if string in line: ++ l.append(line) ++ if len(l) > maxlen: ++ del l[0] ++ f.close() ++ return l ++ ++ ++if __name__ == "__main__": ++ try: ++ locale.setlocale(locale.LC_ALL, "") ++ except locale.Error: ++ os.environ['LC_ALL'] = 'C' ++ locale.setlocale(locale.LC_ALL, "") ++ ++ # Defeat "AttributeError: 'module' object has no attribute 'nl_langinfo'" ++ try: ++ gettext.bind_textdomain_codeset(GETTEXT_PROGNAME, ++ locale.nl_langinfo(locale.CODESET)) ++ except AttributeError: ++ pass ++ ++ gettext.bindtextdomain(GETTEXT_PROGNAME, '/usr/share/locale') ++ gettext.textdomain(GETTEXT_PROGNAME) ++ ++ # ++ # So far we only look for Machine Check Exceptions here. ++ # ++ ++ # See if MCEs were seen ++ if not file_has_string("dmesg", "Machine check events logged"): ++ sys.exit(0) ++ # ++ # There was an MCE. IOW: it's not a bug, it's a HW error. ++ f = open("not-reportable", "w") ++ f.write("The kernel log indicates that hardware errors were detected.\n"); ++ f.write("This is most likely not a software problem.\n"); ++ f.close() ++ ++ # ++ # Did mcelog logged it to /var/log/mcelog ++ # (RHEL6 by default does this)? ++ if os.path.exists("/var/log/mcelog"): ++ f = open("comment", "w") ++ f.write("The kernel log indicates that hardware errors were detected.\n") ++ f.write("/var/log/mcelog file may have more information.\n") ++ f.write("The last 20 lines of /var/log/mcelog are:\n") ++ f.write("=========================================\n") ++ #tail -n20 /var/log/mcelog 2>&1 ++ l = tail_with_search("/var/log/mcelog", "", 20) ++ for line in l: ++ f.write(line) ++ f.close() ++ sys.exit(0) ++ # ++ # On RHEL7, mcelog is run so that its output ends up in syslog. ++ # Do we see that? ++ if file_has_string("/var/log/messages", "mcelog: Hardware event"): ++ f = open("comment", "w") ++ f.write("The kernel log indicates that hardware errors were detected.\n") ++ f.write("System log may have more information.\n") ++ f.write("The last 20 mcelog lines of system log are:\n") ++ f.write("==========================================\n") ++ #grep -Fi 'mcelog:' /var/log/messages | tail -n20 2>&1 ++ l = tail_with_search("/var/log/messages", "mcelog:", 20) ++ for line in l: ++ f.write(line) ++ f.close() ++ sys.exit(0) ++ # ++ # Apparently, there is no running mcelog daemon! ++ # Let user know that he needs one. ++ f = open("comment", "w") ++ f.write("The kernel log indicates that hardware errors were detected.\n") ++ f.write("The data was saved by kernel for processing by the mcelog tool.\n") ++ f.write("However, neither /var/log/mcelog nor system log contain mcelog messages.\n") ++ f.write("Most likely reason is that mcelog is not installed or not configured\n") ++ f.write("to be started during boot.\n") ++ f.write("Without this tool running, the binary data saved by kernel\n") ++ f.write("is of limited usefulness.\n") ++ f.write("(You can save this data anyway by running 'cat FILE').\n") ++ f.write("The recommended course of action is to install mcelog.\n") ++ f.write("If another hardware error would occur, a user-readable description\n") ++ f.write("of it will be saved in system log or /var/log/mcelog.\n") ++ f.close() +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index 7dfbe36..3740f65 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -3,61 +3,8 @@ EVENT=post-create analyzer=Kerneloops + # >> instead of > is due to bugzilla.redhat.com/show_bug.cgi?id=854266 + abrt-action-analyze-oops && + dmesg >>dmesg && +- abrt-action-save-kernel-data +- abrt-action-save-kernel-data || exit $? +- # +- # If it exists, we can save a copy of MCE log here: +- #test -f /var/log/mcelog && cp /var/log/mcelog . +- # but in current config, sosreport already does that. +- # +- # See if MCEs were seen but mcelog isn't installed or running +- grep -qFi 'Machine check events logged' dmesg || exit 0 +- # +- # There was an MCE. IOW: it's not a bug, it's a HW error. +- # Did mcelog logged it to /var/log/mcelog +- # (RHEL6 by default does this)? +- test -f /var/log/mcelog && +- { +- # (Ab)use user comment field to inform user about it. +- echo "The kernel log indicates that hardware errors were detected." +- echo "/var/log/mcelog file may have more information." +- echo "The last 20 lines of /var/log/mcelog are:" +- echo "=========================================" +- # Redirecting sterr in case selinux makes it unreadable +- # (annoying anyway, but at least user knows what's going on): +- tail -n20 /var/log/mcelog 2>&1 +- exit 0 +- } >comment +- # +- # On RHEL7, mcelog is run so that its output ends up in syslog. +- # Do we see that? +- grep -qFi 'mcelog: Hardware event' /var/log/messages && +- { +- echo "The kernel log indicates that hardware errors were detected." +- echo "System log may have more information." +- echo "The last 20 mcelog lines of system log are:" +- echo "=========================================" +- # Redirecting sterr in case selinux makes it unreadable +- # (annoying anyway, but at least user knows what's going on): +- grep -Fi 'mcelog:' /var/log/messages | tail -n20 2>&1 +- exit 0 +- } >comment +- # +- # Apparently, there is no running mcelog daemon! +- # Let user know that he needs one. +- { +- echo "The kernel log indicates that hardware errors were detected." +- echo "The data was saved by kernel for processing by the mcelog tool." +- echo "However, neither /var/log/mcelog nor system log contain mcelog messages." +- echo "Most likely reason is that mcelog is not installed or not configured" +- echo "to be started during boot." +- echo "Without this tool running, the binary data saved by kernel" +- echo "is of limited usefulness." +- echo "(You can save this data anyway by running 'cat FILE')." +- echo "The recommended course of action is to install mcelog." +- echo "If another hardware error would occur, a user-readable description" +- echo "of it will be saved in system log or /var/log/mcelog." +- } >comment ++ abrt-action-save-kernel-data && ++ abrt-action-check-oops-for-hw-error + + # If you want behavior similar to one provided by kerneloops daemon + # distributed by kerneloops.org - that is, if you want +-- +1.8.3.1 + diff --git a/SOURCES/0021-abrt-action-check-oops-for-hw-error-i18n-add-error-c.patch b/SOURCES/0021-abrt-action-check-oops-for-hw-error-i18n-add-error-c.patch new file mode 100644 index 0000000..5f6f6c1 --- /dev/null +++ b/SOURCES/0021-abrt-action-check-oops-for-hw-error-i18n-add-error-c.patch @@ -0,0 +1,79 @@ +From 56c3d6950f300e98460fe196e0fe138f89ead83d Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Mon, 6 Jan 2014 16:47:52 +0100 +Subject: [ABRT PATCH 21/27] abrt-action-check-oops-for-hw-error: i18n, add + error check on open() + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-check-oops-for-hw-error.in | 23 ++++++++++++++++------ + 1 file changed, 17 insertions(+), 6 deletions(-) + +diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in +index 83c0f22..ce13caf 100644 +--- a/src/plugins/abrt-action-check-oops-for-hw-error.in ++++ b/src/plugins/abrt-action-check-oops-for-hw-error.in +@@ -39,6 +39,15 @@ def tail_with_search(filename, string, maxlen): + return l + + ++def open_or_die(filename, mode): ++ try: ++ f = open(filename, mode) ++ except IOError as e: ++ sys.stderr.write(str(e) + "\n") ++ sys.exit(1) ++ return f ++ ++ + if __name__ == "__main__": + try: + locale.setlocale(locale.LC_ALL, "") +@@ -65,16 +74,18 @@ if __name__ == "__main__": + sys.exit(0) + # + # There was an MCE. IOW: it's not a bug, it's a HW error. +- f = open("not-reportable", "w") +- f.write("The kernel log indicates that hardware errors were detected.\n"); +- f.write("This is most likely not a software problem.\n"); ++ f = open_or_die("not-reportable", "w") ++ f.write(_( ++ "The kernel log indicates that hardware errors were detected.\n" ++ "This is most likely not a software problem.\n" ++ )) + f.close() + + # + # Did mcelog logged it to /var/log/mcelog + # (RHEL6 by default does this)? + if os.path.exists("/var/log/mcelog"): +- f = open("comment", "w") ++ f = open_or_die("comment", "w") + f.write("The kernel log indicates that hardware errors were detected.\n") + f.write("/var/log/mcelog file may have more information.\n") + f.write("The last 20 lines of /var/log/mcelog are:\n") +@@ -89,7 +100,7 @@ if __name__ == "__main__": + # On RHEL7, mcelog is run so that its output ends up in syslog. + # Do we see that? + if file_has_string("/var/log/messages", "mcelog: Hardware event"): +- f = open("comment", "w") ++ f = open_or_die("comment", "w") + f.write("The kernel log indicates that hardware errors were detected.\n") + f.write("System log may have more information.\n") + f.write("The last 20 mcelog lines of system log are:\n") +@@ -103,7 +114,7 @@ if __name__ == "__main__": + # + # Apparently, there is no running mcelog daemon! + # Let user know that he needs one. +- f = open("comment", "w") ++ f = open_or_die("comment", "w") + f.write("The kernel log indicates that hardware errors were detected.\n") + f.write("The data was saved by kernel for processing by the mcelog tool.\n") + f.write("However, neither /var/log/mcelog nor system log contain mcelog messages.\n") +-- +1.8.3.1 + diff --git a/SOURCES/0022-Add-a-manpage-for-abrt-action-check-oops-for-hw-erro.patch b/SOURCES/0022-Add-a-manpage-for-abrt-action-check-oops-for-hw-erro.patch new file mode 100644 index 0000000..3e2ec47 --- /dev/null +++ b/SOURCES/0022-Add-a-manpage-for-abrt-action-check-oops-for-hw-erro.patch @@ -0,0 +1,57 @@ +From 92f6776a2d4d2c4a7239e3721acd2df46f6dd7da Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Tue, 3 Dec 2013 12:19:27 +0100 +Subject: [ABRT PATCH 22/27] Add a manpage for + abrt-action-check-oops-for-hw-error + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + doc/abrt-action-check-oops-for-hw-error.txt | 32 +++++++++++++++++++++++++++++ + 1 file changed, 32 insertions(+) + create mode 100644 doc/abrt-action-check-oops-for-hw-error.txt + +diff --git a/doc/abrt-action-check-oops-for-hw-error.txt b/doc/abrt-action-check-oops-for-hw-error.txt +new file mode 100644 +index 0000000..c488e6f +--- /dev/null ++++ b/doc/abrt-action-check-oops-for-hw-error.txt +@@ -0,0 +1,32 @@ ++abrt-action-check-oops-for-hw-error(1) ++====================================== ++ ++NAME ++---- ++abrt-action-check-oops-for-hw-error - Checks dmesg element, marks problem as not-reportable ++if hardware error is detected ++ ++SYNOPSIS ++-------- ++'abrt-action-check-oops-for-hw-error' ++ ++DESCRIPTION ++----------- ++The tool reads 'dmesg' element, and if it has a message which indicates hardware ++error, it creates 'not-reportable' and 'comment' elements which explain ++what this error is and how it can be diagnosed further. ++ ++Integration with ABRT events ++~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ++This tool can be used in event handling for kernel oopses. Example ++fragment for /etc/libreport/report_event.conf: ++ ++------------ ++# Determine in which package/component the crash happened (if not yet done): ++EVENT=post-create analyzer=Kerneloops ++ abrt-action-check-oops-for-hw-error ++------------ ++ ++AUTHORS ++------- ++* ABRT team +-- +1.8.3.1 + diff --git a/SOURCES/0023-oops-post-create-do-not-fail-the-event-if-check-oops.patch b/SOURCES/0023-oops-post-create-do-not-fail-the-event-if-check-oops.patch new file mode 100644 index 0000000..b08d583 --- /dev/null +++ b/SOURCES/0023-oops-post-create-do-not-fail-the-event-if-check-oops.patch @@ -0,0 +1,33 @@ +From b75653c212a0d50e163e9a550a4c4b7e650402c2 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Wed, 4 Dec 2013 13:26:35 +0100 +Subject: [ABRT PATCH 23/27] oops post-create: do not fail the event if + check-oops-for-hw-error exits nonzero + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + src/plugins/koops_event.conf | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index 3740f65..37a79a9 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -4,7 +4,9 @@ EVENT=post-create analyzer=Kerneloops + abrt-action-analyze-oops && + dmesg >>dmesg && + abrt-action-save-kernel-data && +- abrt-action-check-oops-for-hw-error ++ # Do not fail the event (->do not delete problem dir) ++ # if check-oops-for-hw-error exits nonzero: ++ { abrt-action-check-oops-for-hw-error || true; } + + # If you want behavior similar to one provided by kerneloops daemon + # distributed by kerneloops.org - that is, if you want +-- +1.8.3.1 + diff --git a/SOURCES/0024-doc-MCE_readme.txt-new-file-documentation-about-MCE-.patch b/SOURCES/0024-doc-MCE_readme.txt-new-file-documentation-about-MCE-.patch new file mode 100644 index 0000000..a6ffc53 --- /dev/null +++ b/SOURCES/0024-doc-MCE_readme.txt-new-file-documentation-about-MCE-.patch @@ -0,0 +1,111 @@ +From 95e9590bfee2df447c8f4c0fd799e8c514beca80 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Tue, 10 Dec 2013 13:07:35 +0100 +Subject: [ABRT PATCH 24/27] doc/MCE_readme.txt: new file - documentation about + MCE handling + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + doc/MCE_readme.txt | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 86 insertions(+) + create mode 100644 doc/MCE_readme.txt + +diff --git a/doc/MCE_readme.txt b/doc/MCE_readme.txt +new file mode 100644 +index 0000000..ed5b627 +--- /dev/null ++++ b/doc/MCE_readme.txt +@@ -0,0 +1,86 @@ ++ Background ++ ++MCEs can be fatal (they panic kernel) or not. ++Fatal MCE are delivered as exception#18. ++Non-fatal ones sometimes are delivered as exception#18; other times ++they are silently recorded in magic MSRs, CPU is not alerted. ++Linux kernel periodically (up to 5 mins interval) reads those MSRs ++and if MCE is seen there, it is piped in binary form through ++/dev/mcelog to whoever listens on it. (Such as mcelog tool in ++--daemon mode; but cat Are those magic MSR registers cleared when read via /dev/mcelog? ++ ++Yes. ++ ++> Without mcelog utility, we can directly read only binary form, right? ++> Not nice, but still useful, right? ++> (could be transferred to nice text form on other machine). ++ ++No, raw /dev/mcelog data is not easy to interpret on other machine. ++In fact, it can't be used by mcelog tool even on the same machine. ++Technical reason is that mcelog uses an obscure ioctl on /dev/mcelog ++in order to know the size of binary blob with MCE information. ++When run on a file, ioctl fails, and mcelog bombs out. ++ ++Looks like without mcelog running and processing /dev/mcelog data, ++non-fatal MCE's can't be easily decoded with currently existing tools. ++ ++mcelog tool can be configured to write log to /var/log/mcelog ++(RHEL6 does that) or to syslog (RHEL7 does that). ++ ++ ++ How ABRT catches MCEs ++ ++Fatal MCEs are caught as any fatal kernel panic is caught - as a vmcore. ++The oops text, which goes to "backtrace" element, will be the decoded ++MCE message from kernel log buffer. ++ ++Non-fatal MCEs are caught as kernel oopses. ++If "Machine check events logged" message is seen in "dmesg" element, ++we assume it's a MCE, and create "not-reportable" element with suitable ++explanation. ++Then we check whether /var/log/mcelog exists, ++or whether system log contains "mcelog: Hardware event", ++and create a "comment" element with explanatory text, followed by ++last 20 lines from either of those files. ++ ++ ++ How to test MCEs ++ ++There is an MCE injection tool and a kernel module, both named mce-inject. ++(The tool comes from mce-test project, may be found in ras-utils RHEL7 package). ++The script I used is: ++ ++modprobe mce-inject ++sync & ++sleep 1 ++sync ++# This can crash the machine: ++echo "Injecting MCE from file $1" ++mce-inject "$1" ++echo "Exitcode:$?" ++ ++It requires files which describe MCE to simulate. I grabbed a few examples ++from mce-test.tar.gz (source tarball of mce-test project). ++I used this this file to cause a non-fatal MCE: ++ ++CPU 0 BANK 2 ++STATUS VAL OVER EN ++ ++And this one to cause a fatal one: ++ ++CPU 0 BANK 4 ++MCGSTATUS MCIP ++STATUS FATAL S ++RIP 12343434 ++MISC 11 ++ ++(Not sure what failures exactly they imitate, maybe there are better examples). +-- +1.8.3.1 + diff --git a/SOURCES/0025-examples-mce2.test-an-example-of-non-fatal-MCE.patch b/SOURCES/0025-examples-mce2.test-an-example-of-non-fatal-MCE.patch new file mode 100644 index 0000000..ee813a8 --- /dev/null +++ b/SOURCES/0025-examples-mce2.test-an-example-of-non-fatal-MCE.patch @@ -0,0 +1,49 @@ +From bbb0d8390b4880c439f89fc8f40a623becee607f Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Tue, 10 Dec 2013 14:11:51 +0100 +Subject: [ABRT PATCH 25/27] examples/mce2.test: an example of non-fatal MCE + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + examples/mce2.right | 4 ++++ + examples/mce2.test | 13 +++++++++++++ + 2 files changed, 17 insertions(+) + create mode 100644 examples/mce2.right + create mode 100644 examples/mce2.test + +diff --git a/examples/mce2.right b/examples/mce2.right +new file mode 100644 +index 0000000..358fbcf +--- /dev/null ++++ b/examples/mce2.right +@@ -0,0 +1,4 @@ ++abrt-dump-oops: Found oopses: 1 ++ ++Version: undefined ++mce: [Hardware Error]: Machine check events logged +diff --git a/examples/mce2.test b/examples/mce2.test +new file mode 100644 +index 0000000..c09ac88 +--- /dev/null ++++ b/examples/mce2.test +@@ -0,0 +1,13 @@ ++[ 0.000000] Initializing cgroup subsys cpuset ++[ 0.000000] Initializing cgroup subsys cpu ++[ 0.000000] Initializing cgroup subsys cpuacct ++[ 0.000000] Linux version 3.10.0-49.el7.x86_64 (mockbuild@x86-024.build.eng.bos.redhat.com) (gcc version 4.8.2 20131106 (Red Hat 4.8.2-3) (GCC) ) #1 SMP Tue Nov 12 16:19:27 EST 2013 ++[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.10.0-49.el7.x86_64 root=/dev/mapper/rhel-root ro rd.lvm.lv=rhel/root vconsole.font=latarcyrheb-sun16 rd.lvm.lv=rhel/swap vconsole.keymap=us crashkernel=auto rhgb quiet LANG=en_US.UTF-8 ++... ++[ 126.330988] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts ++[ 126.362117] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts ++[ 207.849710] Machine check injector initialized ++[ 207.992935] ICMPv6: RA: ndisc_router_discovery failed to add default route ++[ 209.024284] Starting machine check poll CPU 0 ++[ 209.024295] mce: [Hardware Error]: Machine check events logged ++[ 209.024296] Machine check poll done on CPU 0 +-- +1.8.3.1 + diff --git a/SOURCES/0026-MCE-cover-cases-where-kernel-version-isn-t-detected-.patch b/SOURCES/0026-MCE-cover-cases-where-kernel-version-isn-t-detected-.patch new file mode 100644 index 0000000..3c80d13 --- /dev/null +++ b/SOURCES/0026-MCE-cover-cases-where-kernel-version-isn-t-detected-.patch @@ -0,0 +1,130 @@ +From e30c24a5572c33f9ca5157bfb4e504897b1bb7c9 Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Mon, 6 Jan 2014 16:04:37 +0100 +Subject: [ABRT PATCH 26/27] MCE: cover cases where kernel version isn't + detected on Fedora 20. + +With this change, both fata and non-fatal MCEs are caught on default +Fedora 20 installation. + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + doc/MCE_readme.txt | 9 ++++++++- + src/lib/kernel.c | 2 +- + src/plugins/abrt-dump-oops.c | 3 ++- + src/plugins/koops_event.conf | 11 +++++++++++ + src/plugins/vmcore_event.conf | 14 ++++++++++++-- + 5 files changed, 34 insertions(+), 5 deletions(-) + +diff --git a/doc/MCE_readme.txt b/doc/MCE_readme.txt +index ed5b627..5dff636 100644 +--- a/doc/MCE_readme.txt ++++ b/doc/MCE_readme.txt +@@ -70,7 +70,7 @@ echo "Exitcode:$?" + + It requires files which describe MCE to simulate. I grabbed a few examples + from mce-test.tar.gz (source tarball of mce-test project). +-I used this this file to cause a non-fatal MCE: ++I used this file to cause a non-fatal MCE: + + CPU 0 BANK 2 + STATUS VAL OVER EN +@@ -84,3 +84,10 @@ RIP 12343434 + MISC 11 + + (Not sure what failures exactly they imitate, maybe there are better examples). ++ ++ ++For testing fatal MCEs you need to set up kdump. Mini-recipe: ++(1) yum install --enablerepo='*debuginfo*' kexec-tools crash kernel-debuginfo ++(2) add "crashkernel=128M" to the kernel's command line, reboot ++(3) before injecting fatal MCE, start kdump service: ++ systemctl start kdump.service +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 340ec39..ad20c65 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -66,7 +66,7 @@ static void record_oops(GList **oops_list, struct line_info* lines_info, int oop + { + *oops_list = g_list_append( + *oops_list, +- xasprintf("%s\n%s", (version ? version : "undefined"), oops) ++ xasprintf("%s\n%s", (version ? version : ""), oops) + ); + } + else +diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c +index 5e33f0a..12291be 100644 +--- a/src/plugins/abrt-dump-oops.c ++++ b/src/plugins/abrt-dump-oops.c +@@ -115,7 +115,8 @@ static void save_oops_data_in_dump_dir(struct dump_dir *dd, char *oops, const ch + char *second_line = (char*)strchr(first_line, '\n'); /* never NULL */ + *second_line++ = '\0'; + +- dd_save_text(dd, FILENAME_KERNEL, first_line); ++ if (first_line[0]) ++ dd_save_text(dd, FILENAME_KERNEL, first_line); + dd_save_text(dd, FILENAME_BACKTRACE, second_line); + + /* check if trace doesn't have line: 'Your BIOS is broken' */ +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index 37a79a9..b1472ce 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -3,6 +3,17 @@ EVENT=post-create analyzer=Kerneloops + # >> instead of > is due to bugzilla.redhat.com/show_bug.cgi?id=854266 + abrt-action-analyze-oops && + dmesg >>dmesg && ++ { ++ # action-analyze-oops tries to save kernel version, ++ # but for some oopses it can't do that (e.g. MCEs). ++ # If it failed, try to extract version from dmesg: ++ test -f kernel || ++ { ++ k=`sed -n '/Linux version/ s/.*Linux version \([^ ]*\) .*/\1/p' dmesg | tail -n1` ++ test "$k" != "" && printf "%s" "$k" >kernel ++ true # ignore possible failures in previous command ++ } ++ } && + abrt-action-save-kernel-data && + # Do not fail the event (->do not delete problem dir) + # if check-oops-for-hw-error exits nonzero: +diff --git a/src/plugins/vmcore_event.conf b/src/plugins/vmcore_event.conf +index 655d842..a525ec7 100644 +--- a/src/plugins/vmcore_event.conf ++++ b/src/plugins/vmcore_event.conf +@@ -1,6 +1,7 @@ + # analyze + EVENT=analyze_VMcore analyzer=vmcore + # If kdump machinery already extracted dmesg... ++ ( + if test -f vmcore-dmesg.txt; then + # ...use that + abrt-dump-oops -o vmcore-dmesg.txt >backtrace || exit $? +@@ -15,8 +16,17 @@ EVENT=analyze_VMcore analyzer=vmcore + test "$k" != "" && printf "%s" "$k" >kernel + else + # No vmcore-dmesg.txt, do it the hard way: +- abrt-action-analyze-vmcore +- fi && ++ abrt-action-analyze-vmcore || exit $? ++ # ++ # Does "kernel" element exist? ++ test -f kernel && exit 0 ++ # ++ # Try creating it from dmesg_log (created by abrt-action-analyze-vmcore): ++ test -f dmesg_log || exit 0 ++ k=`sed -n '/Linux version/ s/.*Linux version \([^ ]*\) .*/\1/p' dmesg_log | tail -n1` ++ test "$k" != "" && printf "%s" "$k" >kernel ++ fi ++ ) && + abrt-action-analyze-oops && + abrt-action-save-kernel-data + +-- +1.8.3.1 + diff --git a/SOURCES/0027-MCE-make-oops-and-vmcore-MCEs-a-bit-more-similar.patch b/SOURCES/0027-MCE-make-oops-and-vmcore-MCEs-a-bit-more-similar.patch new file mode 100644 index 0000000..f8502e3 --- /dev/null +++ b/SOURCES/0027-MCE-make-oops-and-vmcore-MCEs-a-bit-more-similar.patch @@ -0,0 +1,110 @@ +From c86f483f58cc8e65030169965c2b4fe34911ef1d Mon Sep 17 00:00:00 2001 +From: Denys Vlasenko +Date: Thu, 16 Jan 2014 13:11:20 +0100 +Subject: [ABRT PATCH 27/27] MCE: make oops and vmcore MCEs a bit more similar + +For oops-MCEs, change abrt-action-check-oops-for-hw-error +to write MCE description to "backtrace" instead of "comment" +element. + +Extend abrt-action-check-oops-for-hw-error to be able to +detect vmcore MCEs: it will create "not-reportable" element +for them too, as it was doing it for oops-MCEs. + +Add post-create processing to vmcore_event.conf which +runs abrt-action-check-oops-for-hw-error on vmcores. +Since that needs dmesg, dmesg extraction also moved +to this event from analyze_VMcore. + +Signed-off-by: Denys Vlasenko + +Related to rhbz#1032077 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-check-oops-for-hw-error.in | 14 ++++++++++---- + src/plugins/vmcore_event.conf | 13 +++++++++---- + 2 files changed, 19 insertions(+), 8 deletions(-) + +diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in +index ce13caf..2333fa1 100644 +--- a/src/plugins/abrt-action-check-oops-for-hw-error.in ++++ b/src/plugins/abrt-action-check-oops-for-hw-error.in +@@ -70,7 +70,9 @@ if __name__ == "__main__": + # + + # See if MCEs were seen +- if not file_has_string("dmesg", "Machine check events logged"): ++ oops_mce = file_has_string("dmesg", "Machine check events logged"); ++ vmcore_mce = file_has_string("backtrace", "Machine Check Exception:"); ++ if not oops_mce and not vmcore_mce: + sys.exit(0) + # + # There was an MCE. IOW: it's not a bug, it's a HW error. +@@ -81,11 +83,15 @@ if __name__ == "__main__": + )) + f.close() + ++ # vmcore MCEs already have good backtrace element, nothing more to do ++ if vmcore_mce: ++ sys.exit(0) ++ + # + # Did mcelog logged it to /var/log/mcelog + # (RHEL6 by default does this)? + if os.path.exists("/var/log/mcelog"): +- f = open_or_die("comment", "w") ++ f = open_or_die("backtrace", "w") + f.write("The kernel log indicates that hardware errors were detected.\n") + f.write("/var/log/mcelog file may have more information.\n") + f.write("The last 20 lines of /var/log/mcelog are:\n") +@@ -100,7 +106,7 @@ if __name__ == "__main__": + # On RHEL7, mcelog is run so that its output ends up in syslog. + # Do we see that? + if file_has_string("/var/log/messages", "mcelog: Hardware event"): +- f = open_or_die("comment", "w") ++ f = open_or_die("backtrace", "w") + f.write("The kernel log indicates that hardware errors were detected.\n") + f.write("System log may have more information.\n") + f.write("The last 20 mcelog lines of system log are:\n") +@@ -114,7 +120,7 @@ if __name__ == "__main__": + # + # Apparently, there is no running mcelog daemon! + # Let user know that he needs one. +- f = open_or_die("comment", "w") ++ f = open_or_die("backtrace", "w") + f.write("The kernel log indicates that hardware errors were detected.\n") + f.write("The data was saved by kernel for processing by the mcelog tool.\n") + f.write("However, neither /var/log/mcelog nor system log contain mcelog messages.\n") +diff --git a/src/plugins/vmcore_event.conf b/src/plugins/vmcore_event.conf +index a525ec7..34608d9 100644 +--- a/src/plugins/vmcore_event.conf ++++ b/src/plugins/vmcore_event.conf +@@ -1,7 +1,6 @@ +-# analyze +-EVENT=analyze_VMcore analyzer=vmcore +- # If kdump machinery already extracted dmesg... ++EVENT=post-create analyzer=vmcore + ( ++ # If kdump machinery already extracted dmesg... + if test -f vmcore-dmesg.txt; then + # ...use that + abrt-dump-oops -o vmcore-dmesg.txt >backtrace || exit $? +@@ -26,7 +25,13 @@ EVENT=analyze_VMcore analyzer=vmcore + k=`sed -n '/Linux version/ s/.*Linux version \([^ ]*\) .*/\1/p' dmesg_log | tail -n1` + test "$k" != "" && printf "%s" "$k" >kernel + fi +- ) && ++ ) ++ # Do not fail the event (->do not delete problem dir) ++ # if check-oops-for-hw-error exits nonzero: ++ { abrt-action-check-oops-for-hw-error || true; } ++ ++# analyze ++EVENT=analyze_VMcore analyzer=vmcore + abrt-action-analyze-oops && + abrt-action-save-kernel-data + +-- +1.8.3.1 + diff --git a/SOURCES/0028-python-install-modules-to-sitearch-directory.patch b/SOURCES/0028-python-install-modules-to-sitearch-directory.patch new file mode 100644 index 0000000..7c91cf8 --- /dev/null +++ b/SOURCES/0028-python-install-modules-to-sitearch-directory.patch @@ -0,0 +1,27 @@ +From 6ada05045535af7a3960c5d7f4b6c7c7bdd7446c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 31 Jan 2014 11:09:46 +0100 +Subject: [ABRT PATCH 28/29] python: install modules to sitearch directory + +Related to rhbz#881123 + +Signed-off-by: Jakub Filak +--- + src/python-problem/problem/Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/python-problem/problem/Makefile.am b/src/python-problem/problem/Makefile.am +index cd8f04e..c7d99cb 100644 +--- a/src/python-problem/problem/Makefile.am ++++ b/src/python-problem/problem/Makefile.am +@@ -1,6 +1,6 @@ + problem_PYTHON = __init__.py exception.py proxies.py tools.py watch.py config.py + +-problemdir = $(pythondir)/problem ++problemdir = $(pyexecdir)/problem + + pyabrtdir = $(problemdir) + pyabrt_LTLIBRARIES = _pyabrt.la +-- +1.8.3.1 + diff --git a/SOURCES/0030-retrace-client-stop-failing-on-SSL2.patch b/SOURCES/0030-retrace-client-stop-failing-on-SSL2.patch new file mode 100644 index 0000000..21d038e --- /dev/null +++ b/SOURCES/0030-retrace-client-stop-failing-on-SSL2.patch @@ -0,0 +1,37 @@ +From a0a65dcc1091dc5a1ad06f4e6b8eb90f47eef98f Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 4 Feb 2014 13:03:21 +0100 +Subject: [ABRT PATCH 30/30] retrace-client: stop failing on SSL2 + +Closes rhbz#1060796 + +Signed-off-by: Jakub Filak +--- + src/plugins/https-utils.c | 9 +++++---- + 1 file changed, 5 insertions(+), 4 deletions(-) + +diff --git a/src/plugins/https-utils.c b/src/plugins/https-utils.c +index cb3c606..f1fe825 100644 +--- a/src/plugins/https-utils.c ++++ b/src/plugins/https-utils.c +@@ -213,12 +213,13 @@ void ssl_connect(struct https_cfg *cfg, PRFileDesc **tcp_sock, PRFileDesc **ssl_ + error_msg_and_die(_("Failed to wrap TCP socket by SSL.")); + if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_HANDSHAKE_AS_CLIENT, PR_TRUE)) + error_msg_and_die(_("Failed to enable client handshake to SSL socket.")); +- if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_SSL2, PR_TRUE)) +- error_msg_and_die(_("Failed to enable client handshake to SSL socket.")); ++ // https://bugzilla.redhat.com/show_bug.cgi?id=1033024#c6 ++ //if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_SSL2, PR_TRUE)) ++ // error_msg_and_die(_("Failed to enable SSL2.")); + if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_SSL3, PR_TRUE)) +- error_msg_and_die(_("Failed to enable client handshake to SSL socket.")); ++ error_msg_and_die(_("Failed to enable SSL3.")); + if (SECSuccess != SSL_OptionSet(*ssl_sock, SSL_ENABLE_TLS, PR_TRUE)) +- error_msg_and_die(_("Failed to enable client handshake to SSL socket.")); ++ error_msg_and_die(_("Failed to enable TLS.")); + if (SECSuccess != SSL_SetURL(*ssl_sock, cfg->url)) + error_msg_and_die(_("Failed to set URL to SSL socket.")); + +-- +1.8.3.1 + diff --git a/SOURCES/0033-upload-watch-remove-busy-wait-for-SIGUSR1.patch b/SOURCES/0033-upload-watch-remove-busy-wait-for-SIGUSR1.patch new file mode 100644 index 0000000..c3ef45b --- /dev/null +++ b/SOURCES/0033-upload-watch-remove-busy-wait-for-SIGUSR1.patch @@ -0,0 +1,114 @@ +From b23cb1c47c7acb28a002162cd2dcf897e9f0f019 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 7 Feb 2014 17:54:14 +0100 +Subject: [ABRT PATCH 33/34] upload-watch: remove busy-wait for SIGUSR1 + +Unconditional checking of SIGUSR1 flag in the idle source of main loop +causes 100% CPU usage. + +hanle_sigusr() function and got_sigusr flag are not necessary because +abrt-upload-watch already implements signal handling based on usage of +GIO Channels. + +Closes rhbz#1063317 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-upload-watch.c | 37 +++++++++---------------------------- + 1 file changed, 9 insertions(+), 28 deletions(-) + +diff --git a/src/daemon/abrt-upload-watch.c b/src/daemon/abrt-upload-watch.c +index 59bfbe4..a42b285 100644 +--- a/src/daemon/abrt-upload-watch.c ++++ b/src/daemon/abrt-upload-watch.c +@@ -27,7 +27,6 @@ + #define DEFAULT_CACHE_MIB_SIZE 4 + + static int g_signal_pipe[2]; +-static sig_atomic_t got_sigusr; + + struct queue + { +@@ -122,24 +121,11 @@ handle_new_path(struct process *proc, char *name) + } + } + +-static gboolean ++static void + print_stats(struct process *proc) + { +- /* there is a race, because we run this function from 2 different places +- * 1st when a child dies +- * 2nd as idle source from mainloop +- * if it happens the stats will be printed twice, which I think +- * is not a big deal, because it's only for debug and tests +- */ +- if (got_sigusr == 1) +- { +- got_sigusr = 0; +- /* this is meant only for debugging, so not marking it as translatable */ +- fprintf(stderr, "%i archives to process, %i active workers\n", g_queue_get_length(&proc->queue.q), proc->children); +- } +- +- /* don't remove this source from glib */ +- return true; ++ /* this is meant only for debugging, so not marking it as translatable */ ++ fprintf(stderr, "%i archives to process, %i active workers\n", g_queue_get_length(&proc->queue.q), proc->children); + } + + static void +@@ -157,13 +143,6 @@ process_next_in_queue(struct process *proc) + } + + static void +-handle_sigusr(int signo) +-{ +- /* just set the flag and process it synchronously */ +- got_sigusr = 1; +-} +- +-static void + handle_signal(int signo) + { + int save_errno = errno; +@@ -200,7 +179,11 @@ handle_signal_pipe_cb(GIOChannel *gio, GIOCondition condition, gpointer user_dat + { + /* we did receive a signal */ + log_debug("Got signal %d through signal pipe", signals[signo]); +- if (signals[signo] != SIGCHLD) ++ if (signals[signo] == SIGUSR1) ++ { ++ print_stats(proc); ++ } ++ else if (signals[signo] != SIGCHLD) + { + process_quit(proc); + return FALSE; /* remove this event */ +@@ -363,7 +346,7 @@ main(int argc, char **argv) + close_on_exec_on(g_signal_pipe[1]); + ndelay_on(g_signal_pipe[0]); + ndelay_on(g_signal_pipe[1]); +- signal(SIGUSR1, handle_sigusr); ++ signal(SIGUSR1, handle_signal); + signal(SIGTERM, handle_signal); + signal(SIGINT, handle_signal); + signal(SIGCHLD, handle_signal); +@@ -373,7 +356,6 @@ main(int argc, char **argv) + handle_signal_pipe_cb, + &proc); + +- int status_callback_source_id = g_idle_add((GSourceFunc)print_stats, &proc); + log_info("Starting glib main loop"); + + g_main_loop_run(proc.main_loop); +@@ -381,7 +363,6 @@ main(int argc, char **argv) + log_info("Glib main loop finished"); + + g_source_remove(channel_signal_source_id); +- g_source_remove(status_callback_source_id); + + GError *error = NULL; + g_io_channel_shutdown(channel_signal, FALSE, &error); +-- +1.8.3.1 + diff --git a/SOURCES/0034-turn-off-Autoreporting.patch b/SOURCES/0034-turn-off-Autoreporting.patch new file mode 100644 index 0000000..cec101c --- /dev/null +++ b/SOURCES/0034-turn-off-Autoreporting.patch @@ -0,0 +1,28 @@ +From ff8acb9bb35ebcc0fc2541e245989afccc860671 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 10 Feb 2014 16:05:13 +0100 +Subject: [ABRT PATCH 34/34] turn off Autoreporting + +Closes rhbz#1051480 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 403b93d..59d1831 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -34,7 +34,7 @@ AutoreportingEvent = report_uReport + + # Enables automatic running of the event configured in AutoreportingEvent option. + # +-AutoreportingEnabled = yes ++AutoreportingEnabled = no + + # Enables shortened GUI reporting where the reporting is interrupted after + # AutoreportingEvent is done. +-- +1.8.3.1 + diff --git a/SOURCES/0036-never-search-for-MCE-strings-in-dmesg.patch b/SOURCES/0036-never-search-for-MCE-strings-in-dmesg.patch new file mode 100644 index 0000000..48a08db --- /dev/null +++ b/SOURCES/0036-never-search-for-MCE-strings-in-dmesg.patch @@ -0,0 +1,34 @@ +From 6d22940abaeed562e3415fbad905243817a62c21 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 12 Feb 2014 17:51:40 +0100 +Subject: [ABRT PATCH 36/36] never search for MCE strings in dmesg + +'dmesg' element contains complete output of dmesg, therefore once kernel +log MCE all consecutive oopses has the MCE messages in 'dmesg' element. + +'backtrace' element contains either oops's backtrace or the MCE message +whose scope is limited to a single oops. + +Closes rhbz#1064458 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-check-oops-for-hw-error.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-check-oops-for-hw-error.in b/src/plugins/abrt-action-check-oops-for-hw-error.in +index 2333fa1..d74f89d 100644 +--- a/src/plugins/abrt-action-check-oops-for-hw-error.in ++++ b/src/plugins/abrt-action-check-oops-for-hw-error.in +@@ -70,7 +70,7 @@ if __name__ == "__main__": + # + + # See if MCEs were seen +- oops_mce = file_has_string("dmesg", "Machine check events logged"); ++ oops_mce = file_has_string("backtrace", "Machine check events logged"); + vmcore_mce = file_has_string("backtrace", "Machine Check Exception:"); + if not oops_mce and not vmcore_mce: + sys.exit(0) +-- +1.8.3.1 + diff --git a/SOURCES/0037-sos-capture-all-necessary-data.patch b/SOURCES/0037-sos-capture-all-necessary-data.patch new file mode 100644 index 0000000..9938065 --- /dev/null +++ b/SOURCES/0037-sos-capture-all-necessary-data.patch @@ -0,0 +1,30 @@ +From b4fdb9cccbb6b9ea953e2a633d08ace920f84850 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 24 Feb 2014 17:53:29 +0100 +Subject: [ABRT PATCH 37/40] sos: capture all necessary data + +Thanks Deepu K S + +Closes rhbz#1069278 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt_event.conf | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf +index fe9c3d5..380b312 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -74,6 +74,8 @@ EVENT=post-create + --only=memory --only=networking --only=nfsserver --only=pam \ + --only=process --only=rpm -k rpm.rpmva=off --only=ssh \ + --only=startup --only=yum --only=general --only=x11 \ ++ --only=cups --only=logs --only=grub2 --only=cron --only=pci \ ++ --only=auditd --only=selinux --only=lvm2 --only=sar \ + >sosreport.log 2>&1 \ + && { + rm sosreport.log +-- +1.8.3.1 + diff --git a/SOURCES/0038-stop-sending-ureports-from-abrt-applet.patch b/SOURCES/0038-stop-sending-ureports-from-abrt-applet.patch new file mode 100644 index 0000000..434bd63 --- /dev/null +++ b/SOURCES/0038-stop-sending-ureports-from-abrt-applet.patch @@ -0,0 +1,82 @@ +From 9bc8bc16ca37d2e5c0caa20649a92dc1ae814051 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 24 Feb 2014 11:24:20 +0100 +Subject: [ABRT PATCH 38/40] stop sending ureports from abrt-applet + +Related to rhbz#1067114 + +Signed-off-by: Jakub Filak +--- + src/applet/applet.c | 10 ++++++++++ + 1 file changed, 10 insertions(+) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index 131d2ab..6ce400f 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -49,6 +49,8 @@ + + #define GUI_EXECUTABLE "gnome-abrt" + ++#define RHBZ_1067114_NO_UREPORT ++ + enum + { + /* +@@ -90,6 +92,7 @@ static bool is_autoreporting_enabled(void) + return get_configured_bool_or_default("AutoreportingEnabled", g_settings_autoreporting); + } + ++#ifndef RHBZ_1067114_NO_UREPORT + static bool is_ureport_auth_enabled(void) + { + bool success, auth_enabled; +@@ -110,6 +113,7 @@ static bool is_ureport_auth_enabled(void) + + return auth_enabled; + } ++#endif//RHBZ_1067114_NO_UREPORT + + static const char *get_autoreport_event_name(void) + { +@@ -118,6 +122,7 @@ static const char *get_autoreport_event_name(void) + return configured ? configured : g_settings_autoreporting_event; + } + ++#ifndef RHBZ_1067114_NO_UREPORT + static void ask_start_autoreporting() + { + struct strbuf *question = strbuf_new(); +@@ -156,6 +161,7 @@ static void ask_start_autoreporting() + /* must be called immediately, otherwise the data could be lost in case of crash */ + save_user_settings(); + } ++#endif//RHBZ_1067114_NO_UREPORT + + static bool is_shortened_reporting_enabled() + { +@@ -632,10 +638,13 @@ static void action_report(NotifyNotification *notification, gchar *action, gpoin + problem_info_t *pi = (problem_info_t *)user_data; + if (problem_info_get_dir(pi)) + { ++#ifndef RHBZ_1067114_NO_UREPORT + if (strcmp(A_REPORT_REPORT, action) == 0) + { ++#endif//RHBZ_1067114_NO_UREPORT + run_report_from_applet(problem_info_get_dir(pi)); + problem_info_free(pi); ++#ifndef RHBZ_1067114_NO_UREPORT + } + else + { +@@ -647,6 +656,7 @@ static void action_report(NotifyNotification *notification, gchar *action, gpoin + run_event_async(pi, get_autoreport_event_name(), + is_shortened_reporting_enabled() ? 0 : REPORT_UNKNOWN_PROBLEM_IMMEDIATELY); + } ++#endif//RHBZ_1067114_NO_UREPORT + } + else + problem_info_free(pi); +-- +1.8.3.1 + diff --git a/SOURCES/0039-ccpp-run-vulnerability-analysis-in-analyze_LocalGDB.patch b/SOURCES/0039-ccpp-run-vulnerability-analysis-in-analyze_LocalGDB.patch new file mode 100644 index 0000000..b57663e --- /dev/null +++ b/SOURCES/0039-ccpp-run-vulnerability-analysis-in-analyze_LocalGDB.patch @@ -0,0 +1,43 @@ +From f9b0c9a296453cd817cc5d9a2e54ec6b4e123967 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 25 Feb 2014 17:53:42 +0100 +Subject: [ABRT PATCH 39/40] ccpp: run vulnerability analysis in + analyze_LocalGDB + +The vulnerability analysis has been moved from 'post-create' to +'analyze_LocalGDB' because gdb should not be run for random coredump +under root user. + +Closes rhbz#1069719 + +Signed-off-by: Jakub Filak +--- + src/plugins/ccpp_event.conf | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +diff --git a/src/plugins/ccpp_event.conf b/src/plugins/ccpp_event.conf +index ccc9e83..62ff08a 100644 +--- a/src/plugins/ccpp_event.conf ++++ b/src/plugins/ccpp_event.conf +@@ -19,8 +19,6 @@ EVENT=post-create analyzer=CCpp + ##satyr migration: + #satyr abrt-create-core-stacktrace "$DUMP_DIR" + abrt-action-generate-core-backtrace +- # Run GDB plugin to see if crash looks exploitable +- abrt-action-analyze-vulnerability + # Generate hash + abrt-action-analyze-c && + abrt-action-list-dsos -m maps -o dso_list && +@@ -70,6 +68,9 @@ EVENT=collect_xsession_errors analyzer=CCpp dso_list~=.*/libX11.* + # TODO: can we still specify additional directories to search for debuginfos, + # or was this ability lost with move to python installer? + EVENT=analyze_LocalGDB analyzer=CCpp ++ # Run GDB plugin to see if crash looks exploitable ++ abrt-action-analyze-vulnerability ++ # Run GDB to genereate backtrace + abrt-action-analyze-ccpp-local --without-bodhi + + +-- +1.8.3.1 + diff --git a/SOURCES/0040-Translation-updates.patch b/SOURCES/0040-Translation-updates.patch new file mode 100644 index 0000000..2e5be6d --- /dev/null +++ b/SOURCES/0040-Translation-updates.patch @@ -0,0 +1,4130 @@ +From 731f4fe19db62e07550f974e27f6d9135b6df511 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 26 Feb 2014 09:34:07 +0100 +Subject: [ABRT PATCH 40/40] Translation updates + +Related to rhbz#1030314 + +Signed-off-by: Jakub Filak +--- + po/it.po | 277 ++++++++++++++++++++++-------------------- + po/kn.po | 380 ++++++++++++++++++++++++++++++---------------------------- + po/ko.po | 391 +++++++++++++++++++++++++++++++----------------------------- + po/pt_BR.po | 315 +++++++++++++++++++++++++----------------------- + po/zh_TW.po | 239 ++++++++++++++++++++----------------- + 5 files changed, 848 insertions(+), 754 deletions(-) + +diff --git a/po/it.po b/po/it.po +index 0515751..0d1702a 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -7,21 +7,20 @@ + # Antonio Trande , 2011 + # Francesco D'Aluisio , 2011,2013 + # fvalen , 2013 +-# fvalen , 2011-2013 ++# fvalen , 2014 + # Gianluca Sforna , 2012 + # Guido Grazioli , 2013 + # Jiří Moskovčák , 2011 + # Luigi Votta , 2011 + # Mauro Gaggiotti , 2012 + # Silvio Pierro , 2012 +-# Silvio Pierro , 2011-2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-20 01:42+0000\n" ++"Last-Translator: fvalen \n" + "Language-Team: Italian (http://www.transifex.com/projects/p/fedora/language/it/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -37,177 +36,188 @@ msgstr "Automatic Bug Reporting Tool" + msgid "ABRT notification applet" + msgstr "Aplet di notifica ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "La notifica da inviare non contiene alcun dato importante relativo alla sicurezza. Per questo motivo non è necessario avvertirti e richiedere alcuna azione ulteriore in merito. ⏎ Vuoi abilitare l'invio automatico di notifiche anonime sul crash? " ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "Il report da inviare non contiene alcun dato importante relativo alla sicurezza. Per questo motivo non è necessario avvertirti e richiedere alcuna azione ulteriore in merito. \n\n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "Vuoi abilitare l'invio automatico di notifiche sul crash? " ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "Vuoi abilitare l'invio automatico di notifiche anonime sul crash? " + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "Impossibile collegarsi a NetworkManager attraverso DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Impossibile determinare lo stato della rete tramite NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "È stato rilevato un errore" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "È stato rilevato un errore nel pacchetto %s" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s e i dati diagnostici sono stati inviati" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Impossibile eseguire '%s'" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossibile chiudere la notifica: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Attenzione" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Applet area di notifica che informa gli utenti sulla presenza di problematiche rilevate da ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Silvio Pierro , 2013." + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Esci" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Nascondi" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_Informazioni" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Problema rilevato" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Ignora sempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Apri" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "Il problema è stato già riportato" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Si è verificato un errore noto" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Notifica" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Si è verificato un problema" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "È stato riportato un problema" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Si è verificato un nuovo problema" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossibile mostrare la notifica: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Impossibile eseguire la lettura dal canale gio: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossibile impostare la codifica sul canale gio: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Impossibile abilitare la modalità nonblocking per il canale gio: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossibile ottenere la proprietà di '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossibile aprire la directory per la scrittura: '%s'" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Errore nell'aprire la connessione al session manager: '%s', la notifica può riapparire al prossimo login" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nApplet che notifica all'utente il rilevamento di un nuovo problema da parte di ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "_Chiudi" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "_Predefiniti" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Configurazione del report problemi" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Informazioni su System Config ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Informazioni" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Esci" + +@@ -242,8 +252,8 @@ msgstr "& [opzioni]" + msgid "Use NUM as client uid" + msgstr "Utilizzare NUM per l'uid del client" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Log su syslog" +@@ -345,12 +355,12 @@ msgstr "Esegui EVENT su DIR" + msgid "Communicate directly to the user" + msgstr "Comunica direttamente all'utente" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "Nessun thread di lavoro disponibile e buffer pieno. Esclusione archivio '%s' " + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -360,32 +370,32 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" ++msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nControlla UPLOAD_DIRECTORY e decomprime gli archivi in ingresso in DumpLocation\nspecificato con abrt.conf\n\nIn assenza di UPLOAD_DIRECTORY verrà utilizzato il valore di\nWatchCrashdumpArchiveDir disponibile in abrt.conf" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Daemize" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "Numero di thread di lavoro simultanei. L'impostazione predfinita è" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Numero non valido di argomenti" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Valore opzione sconosciuto: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -417,12 +427,12 @@ msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Impossibile ottenere la lista problemi da abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Impossibile creare il file temporaneo '%s'" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +440,7 @@ msgid "" + msgstr "Impossibile scrivere su '%s'. Il problema '%s' non verrà rimosso dai problemi ignorati '%s'" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Impossibile rinominare '%s' in '%s'. Fallita rimozione del problema '%s'" +@@ -446,7 +456,6 @@ msgstr "& [opzioni] -d DIR\n\nAnalizza C/C++ backtrace, genera gli hash di dupli + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -491,7 +500,7 @@ msgstr "& [-v] -d DIR\n\nCalcola e salva UUID e DUPHASH dei crash dump di python + + #: ../src/plugins/abrt-action-analyze-vmcore.in:29 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "Utilizzo: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:56 + msgid "File {0} doesn't exist" +@@ -499,21 +508,27 @@ msgstr "Il file {0} non esiste" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "Estrazione testo oops dal core" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:64 + msgid "" + "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Impossibile processare {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:72 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "Impossibile estrarre il messaggio oops: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:75 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Estratto con successo il testo oops" ++ ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "Il log del kernel indica che sono stati rilevati errori hardware.\nQuesto molto probabilmente non è un errore software.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -532,7 +547,6 @@ msgstr "Termina gbd se viene eseguito per più di NUM secondi" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -587,7 +601,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "Utilizzo: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nInstalla le informazioni di debug per tutti gli id di compilazione presenti in BUILD_IDS_FILE\nper il CACHEDIR, utilizzando TMPDIR come area di staging temporanea.\nI file vecchi in CACHEDIR verranno cancellati fino a quando non si avrà una dimensione più piccola di SIZE.\n\n -v Verboso\n -y Noninteractive, rispondi 'Si' a tutte le domande\n --ids Predfinito: build_ids\n --tmpdir Predefinito: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache Predefinito: /var/cache/abrt-di\n --size_mb Predefinito: 4096\n -e,--exact Scarica solo file specifici\n --repo Pattern da usare durante la ricerca dei repositori.\n Predefinito: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -599,11 +613,11 @@ msgstr "Riferimenti Coredump {0} file debuginfo, {1} di loro non è stato instal + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} dei file debuginfo non sono stati installati" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "File richiesto mancante: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -758,7 +772,7 @@ msgstr "Valutazione di rischio (scala 0-9):" + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Istruzioni correnti:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -775,76 +789,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nVerifica il file log FILE, esegu + msgid "Don't run PROG if STRs aren't found" + msgstr "Non eseguire PROG se non sono stati trovati STR" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "Si è verificato un problema al kernel a causa di un BIOS non corretto. Sfortunatamente questi problemi non possono essere risolti dai manutentori del kernel." + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "Si è verificato un problema al kernel ma il tuo hardware non è supportato, per questo motivo i manutentori del kernel non sono in grado di risolvere questo problema." + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Si è verificato un problema di kernel, ma il kernel è stato istruito (flag:%s). I manutentori del kernel non sono in grado di effettuare diagnosi dei rapporti istruiti." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Moduli corrotti: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]⏎\n⏎\nEstrae errori da FILE (o dall'input standard)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Stampa gli oops trovati sull'uscita standard" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Crea una nuova directory del problema in DIR per ogni oops rilevato" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Uguale a -d DumpLocation, DumpLocation viene specificato in abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Salva l'informazione estratta in PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Rendi la directory del problema leggibile a tutti" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "Aumenta la creazione della directory del problema a 1 per secondo" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "Impossibile aggiornare il problema: travati più di un oops" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "In sospensione per %d secondi" + + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" +@@ -869,7 +882,6 @@ msgstr "Impossibile usare il Retrace server poichè il crash è troppo grande. P + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1120,7 +1132,7 @@ msgstr "password della istanza sul server" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [options]\nOperazioni: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1287,64 +1299,71 @@ msgstr "Impostazione modalità di blocco del socket fallita." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Wrapping del socket TCP tramite SSL fallito." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Impossibile abilitare il client handshake per il socket SSL." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "Impossibile abilitare SSL3." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "Impossibile abilitare TLS." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Impostazione URL per il socket SSL fallita." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Impossibile connettersi a '%s'" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Impostazione hook del certificato fallita." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Impostazione handshake callback fallita." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Reimpostazione handshake fallita." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Handshake SSL fallito: errore NSS %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Chiusura socket SSL fallita." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Intestazione risposta HTTP non corretta: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Ricezione dati fallita: Errore NSS %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Risposta a blocchi non corretta." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Inizializzazione NSS fallita." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Inizializzazione del modulo di sicurezza fallita." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Arresto NSS fallito." + +@@ -1405,7 +1424,7 @@ msgstr "Cancella file con errori trovati" + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' identifica più di una directory del problema" + + #: ../src/cli/abrt-cli.c:142 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +@@ -1435,46 +1454,46 @@ msgstr "Stampa il contatore dei crash recenti" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [opzioni] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Elenca solo problemi non riportati" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Mostra una notifica dettagliata" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Elenca solo i problemi più recenti della data specificata" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Elenca solo i problemi più vecchi della data specificata" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "La funzione di auto-reporting è disabilitata. Abilitarla con il comando\n'abrt-auto-reporting enabled' come utente con privilegi root\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [opzioni] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "I testi con dimensioni maggiori di questo verranno mostrati ridotti" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "Directory '%s' del problema non trovata" + + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." +diff --git a/po/kn.po b/po/kn.po +index 0c5ce3a..a3afcf3 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -4,18 +4,16 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# shanky , 2013 +-# shankar , 2011-2012 +-# shankar , 2013 ++# shanky , 2014 + # shankar , 2013 +-# shanky , 2011-2013 ++# shanky , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-19 12:26+0000\n" ++"Last-Translator: shanky \n" + "Language-Team: Kannada (http://www.transifex.com/projects/p/fedora/language/kn/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -31,179 +29,190 @@ msgstr "ಸ್ವಯಂಚಾಲಿತ ದೋಷ ವರದಿ ಮಾಡುವ + msgid "ABRT notification applet" + msgstr "ABRT ಸೂಚನಾ ಆಪ್ಲೆಟ್" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "ಕಳುಹಿಸಲಾಗುವ ವರದಿಯು ಯಾವುದೆ ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿಲ್ಲ. ಆದ್ದರಿಂದ, ಮುಂದಿನ ಬಾರಿ ನಿಮಗೆ ಯಾವುದೆ ತೊಂದರೆ ನೀಡುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ ಮತ್ತು ನಿಮ್ಮಿಂದ ಯಾವುದೆ ಕ್ರಿಯೆಯ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ. \nಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಲ್ಲಿಸಲಾದ ಕುಸಿತದ ವರದಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "ಕಳುಹಿಸಲಾಗುವ ವರದಿಯು ಯಾವುದೆ ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿಲ್ಲ. ಆದ್ದರಿಂದ, ಮುಂದಿನ ಬಾರಿ ನಿಮಗೆ ಯಾವುದೆ ತೊಂದರೆ ನೀಡುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ ಮತ್ತು ನಿಮ್ಮಿಂದ ಯಾವುದೆ ಕ್ರಮದ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ.\n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr " ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಲ್ಲಿಸಲಾದ ಕುಸಿತದ ವರದಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಲ್ಲಿಸಲಾದ ಅನಾಮಧೇಯ ಕುಸಿತದ ವರದಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "DBus ಮುಖಾಂತರ NetworkManager ಗೆ ಸಂಪರ್ಕಸಾಧಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ಮುಖಾಂತರ ಜಾಲಬಂಧ ಸ್ಥಿತಿಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "ಒಂದು ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s ಎಂಬ ಪ್ಯಾಕೇಜಿನಲ್ಲಿ ಒಂದು ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s ಮತ್ತು ದೋಷಪತ್ತೆಯ ಮಾಹಿತಿಯನ್ನು ಸಲ್ಲಿಸಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "'%s' ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲಾಗಿಲ್ಲ" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "ಎಚ್ಚರಿಕೆ" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT ಇಂದ ಪತ್ತೆ ಮಾಡಲಾದ ತೊಂದರೆಗಳನ್ನು ಬಳಕೆದಾರರಿಗೆ ಸೂಚಿಸುವ ಸೂಚನಾ ಸ್ಥಳದ ಆಪ್ಲೆಟ್" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "ಶಂಕರ್ ಪ್ರಸಾದ್ " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" +-msgstr "" ++msgstr "ನಿರ್ಗಮಿಸು (_Q)" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "ಅಡಗಿಸು" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" +-msgstr "" ++msgstr "ಇದರ ಬಗ್ಗೆ (_A)" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" +-msgstr "" ++msgstr "ಯಾವಾಗಲೂ ಕಡೆಗಣಿಸು" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "ತೆರೆ" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ವರದಿ ಮಾಡಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "ಒಂದು ಗೊತ್ತಿರುವ ತೊಂದರೆಯು ಎದುರಾಗಿದೆ" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "ವರದಿ" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "ದೋಷವೊಂದು ಸಂಭವಿಸಿದೆ" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "ಒಂದು ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "ಒಂದು ಹೊಸ ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ಮಾರ್ಗದಿಂದ ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "" ++msgstr "ಅಧಿವೇಶನದ ವ್ಯವಸ್ಥಾಪಕಕ್ಕೆ ಸಂಪರ್ಕವನ್ನು ತೆರೆಯಲು ವಿಫಲಗೊಂಡಿದೆ: '%s', ಸೂಚನೆಯು ಮುಂದಿನ ಲಾಗಿನ್‌ನಲ್ಲಿ ಮರಳಿ ಕಾಣಿಸಿಕೊಳ್ಳುತ್ತದೆ" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nApplet which notifies user when new problems are detected by ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "ಮುಚ್ಚು (_C)" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "" ++msgstr "ಪೂರ್ವನಿಯೋಜಿತಗಳು (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "ತೊಂದರೆ ವರದಿ ಸಂರಚನೆ" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "ಸಿಸ್ಟಮ್ ಕಾಗ್ ABRT ಕುರಿತು" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "ಕುರಿತು" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "ನಿರ್ಗಮಿಸು" + + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" +@@ -236,8 +245,8 @@ msgstr "& [ಆಯ್ಕೆಗಳು]" + msgid "Use NUM as client uid" + msgstr "NUM ಅನ್ನು ಕ್ಲೈಂಟ್ uid ಆಗಿ ಬಳಸು" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "syslog ಗೆ ದಾಖಲಿಸು" +@@ -339,12 +348,12 @@ msgstr "DIR ನಲ್ಲಿ EVENT ಅನ್ನು ಚಲಾಯಿಸಿ" + msgid "Communicate directly to the user" + msgstr "ಬಳಕೆದಾರರೊಂದಿಗೆ ನೇರವಾಗಿ ವ್ಯವಹರಿಸು" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "ಯಾವುದೆ ಮುಕ್ತ ಕೆಲಸಗಾರರು ಅಥವ ಪೂರ್ಣ ಬಫರ್ ಇಲ್ಲ. '%s'ಆರ್ಕೈವ್ ಅನ್ನು ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -354,32 +363,32 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" ++msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY ಅನ್ನು ಗಮನಿಸುತ್ತದೆ ಮತ್ತು ಒಳಬರುವ ಆರ್ಕೈವ್‌ಗಳನ್ನು abrt.conf ನಲ್ಲಿ ಸೂಚಿಸಲಾದ\nDumpLocation ಗೆ ಹೊರತೆಗೆಯುತ್ತದೆ\n\nUPLOAD_DIRECTORY ಅನ್ನು ಒದಗಿಸಲಾಗಿರದೆ ಇದ್ದಲ್ಲಿ, abrt.conf ನಲ್ಲಿರುವ\nWatchCrashdumpArchiveDir ಆಯ್ಕೆಯ ಮೌಲ್ಯವನ್ನು ಬಳಸುತ್ತದೆ" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "ಡೆಮನ್ ಆಗಿಸು" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "ಏಕಕಾಲದ ಕೆಲಸಗಾರರ ಸಂಖ್ಯೆ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "ಕ್ಯಾಶೆಯ ಗರಿಷ್ಟ ಗಾತ್ರ, MiB ಯಲ್ಲಿ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳ ಸಂಖ್ಯೆ" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -411,12 +420,12 @@ msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "'%s' ನಲ್ಲಿ ತಾತ್ಕಾಲಿಕ ಕಡತವನ್ನು ನಿರ್ಮಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -424,7 +433,7 @@ msgid "" + msgstr "'%s' ಅನ್ನು ಬರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. '%s' ತೊಂದರೆಯನ್ನು ಕಡೆಗಣಿಸಲಾದ '%s' ತೊಂದರೆಗಳಿಂದ ತೆಗೆದುಹಾಕಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' ಅನ್ನು '%s' ಎಂದು ಮರುಹೆಸರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. '%s' ತೊಂದರೆಯನ್ನು ತೆಗೆಯುವಲ್ಲಿ ವಿಫಲತೆ" +@@ -440,7 +449,6 @@ msgstr "& [options] -d DIR\n\nAnalyzes C/C++ backtrace, generates duplication ha + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -448,7 +456,7 @@ msgstr "%s ಗಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಪಾರ್ಸ + + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "" ++msgstr "ಕುಸಿತದ ಎಳೆಯು (ತ್ರೆಡ್‌) ಕಂಡುಬಂದಿಲ್ಲ" + + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" +@@ -485,7 +493,7 @@ msgstr "& [-v] -d DIR\n\nCalculates and saves UUID and DUPHASH of python crash d + + #: ../src/plugins/abrt-action-analyze-vmcore.in:29 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "ಬಳಕೆ: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:56 + msgid "File {0} doesn't exist" +@@ -493,21 +501,27 @@ msgstr "{0} ಎಂಬ ಕಡತವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "ಕೋರ್ ಇಂದ oops ಪಠ್ಯವನ್ನು ಹೊರತೆಗೆಯುವಿಕೆ" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:64 + msgid "" + "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "{0} ಅನ್ನು ಸಂಸ್ಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:72 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "ಸಂದೇಶವನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:75 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊರತೆಗೆಯಲಾಗಿದೆ" ++ ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "ಯಂತ್ರಾಂಶ ದೋಷಗಳು ಕಂಡುಬಂದಿವೆ ಎಂದು ಕರ್ನಲ್ ಲಾಗ್ ಸೂಚಿಸಿದೆ.\nಇದು ಬಹುಷಃ ತಂತ್ರಾಂಶದ ತೊಂದರೆಯಾಗಿಲ್ಲ.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -526,7 +540,6 @@ msgstr "NUM ಸೆಕೆಂಡುಗಳಿಗಿಂತ ಹೆಚ್ಚು ಸಮ + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -537,7 +550,7 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" ++msgstr "& [-v] [-r] -d DIR\n\nಕೋರ್ ಡಂಪ್‌ನಿಂದ ಮತ್ತು ಸಂಬಂಧಿಸಿದ ಬೈನರಿಯಿಂದ ಕೋರ್ ಡಂಪ್-ಹಂತದ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -550,12 +563,12 @@ msgstr "ಪ್ರಮುಖ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನ + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "ದೋಷ: GDB ಯು ಯಾವುದೆ ದತ್ತಾಂಶವನ್ನು ಮರಳಿಸಿಲ್ಲ" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "ದೋಷ: %s" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +@@ -581,7 +594,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "ಬಳಕೆ: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nBUILD_IDS_FILE ನಲ್ಲಿ ಅನುಸ್ಥಾಪಿಸಲಾದ ಎಲ್ಲಾ ನಿರ್ಮಾಣ-ಐಡಿಗಳಿಗಾಗಿ debuginfos ಅನ್ನು CACHEDIR ಗೆ ಅನುಸ್ಥಾಪಿಸುತ್ತದೆ\nTMPDIR ಅನ್ನು ತಾತ್ಕಾಲಿಕ ಸ್ಟೇಜಿಂಗ್ ಸ್ಥಳವಾಗಿ ಬಳಸಿಕೊಂಡು.\nCACHEDIR ನಲ್ಲಿ ಹಳೆಯ ಕಡತಗಳು SIZE ಗಿಂತ ಚಿಕ್ಕದಾಗುವವರೆಗೆ ಅಳಿಸಲಾಗುತ್ತದೆ.\n\n -v ವರ್ಬೋಸ್ ಆಗು\n -y ಸಂವಾದಾತ್ಮಕವಲ್ಲದ, ಎಲ್ಲಾ ಪ್ರಶ್ನೆಗಳಿಗೂ 'Yes' ಎಂದು ಊಹಿಸಿಕೊ\n --ids ಪೂರ್ವನಿಯೋಜಿತ: build_ids\n --tmpdir ಪೂರ್ವನಿಯೋಜಿತ: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache ಪೂರ್ವನಿಯೋಜಿತ: /var/cache/abrt-di\n --size_mb ಪೂರ್ವನಿಯೋಜಿತ: 4096\n -e,--exact ನಿಗದಿತ ಕಡತಗಳನ್ನು ಮಾತ್ರ ಇಳಿಸಿಕೊ\n --repo ರೆಪೊಗಳಿಗಾಗಿ ಹುಡುಕುವಾಗ ಬಳಸಬೇಕಿರುವ ವಿನ್ಯಾಸಗಳು.\n ಪೂರ್ವನಿಯೋಜಿತ: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -593,11 +606,11 @@ msgstr "{0} debuginfo ಕಡತಗಳನ್ನು Coredump ಉಲ್ಲೇಖಿ + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} debuginfo ಕಡತಗಳನ್ನು ಅನುಸ್ಥಾಪಿಸಲಾಗುತ್ತದೆ" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "ಮನವಿ ಮಾಡಲಾದ ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -642,121 +655,121 @@ msgstr "ಈ ಕೋಶವನ್ನು ಇರಿಸಿಕೊ" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "" ++msgstr "ಯೂಸರ್-ಸ್ಪೇಸ್ ಕೋಡ್‌ನಿಂದ ಕಳುಹಿಸಲಾದ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "" ++msgstr "ಟೈಮರ್/IO/ಎಸಿಂಕ್ ಘಟನೆಯಿಂದ ಕಳುಹಿಸಲಾದ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" ++msgstr "ಸಂಕೇತವು siginfo.si_code = SI_USER ಅನ್ನು ಹೊಂದಿದೆ" + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "ಮುಚ್ಚಲಾದ ಪೈಪ್‌ಗೆ ಬರೆಯುವ ಕಾರಣದಿಂದಾಗಿನ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "ಕೀಲಿಮಣೆಯಿಂದ ಕಳುಹಿಸಲಾದ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "" ++msgstr "ಕರ್ನಲ್‌ನಿಂದ ಕಳುಹಿಸಲಾದ ಕೆಲಸದ ನಿಯಂತ್ರಣ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "" ++msgstr "ಕಿಟಕಿಯ ಗಾತ್ರ ಬದಲಾವಣೆಯಿಂದ ಕಳುಹಿಸಲಾದ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "ಅಲಾರಂ(N) ಕಾಲಾವಧಿ ತೀರಿಕೆಯಿಂದ ಕಳುಹಿಸಲಾದ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "ಮುರಿದ (ಬ್ರೋಕನ್) ಪೈಪ್‌ಗೆ ಬರೆಯುವ ಕಾರಣದಿಂದಾಗಿನ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "" ++msgstr "ABRT ಸಂಕೇತ (abort() ಅನ್ನು ಕರೆಯಲಾಗಿತ್ತೆ?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "XCPU ಸಂಕೇತ (CPU ಸಮಯದ ಮಿತಿಯ ಮೇಲೆ)" + + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "XFSZ ಸಂಕೇತ (ಕಡತದ ಗಾತ್ರದ ಮಿತಿಯ ಮೇಲೆ)" + + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "TRAP ಸಂಕೇತ (ಒಂದು ಡಿಬಗ್ಗರ್/ಟ್ರಸರಿನಲ್ಲಿನ ದೋಷವಿರಬಹುದು)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "" ++msgstr "SYS ಸಂಕೇತ (ಗೊತ್ತಿರದ syscall ಅನ್ನು ಕರೆಯಲಾಗಿದೆಯೆ?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "ಅರಿತ್‌ಮೆಟಿಕ್ ವಿನಾಯಿತಿ" + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "" ++msgstr "ಶೂನ್ಯದಿಂದ ಭಾಗಾಕಾರ" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "ಅನಧೀಕೃತ ಸೂಚನೆ (ಮನಸ್ಸಿಗೆ ಬಂದ ವಿಳಾಸಕ್ಕೆ ಹೋಗಬೇಕೆ?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "" ++msgstr "ಕುಸಿತಕ್ಕೆ ಸಂಬಂಧಿಸಿರದ ಸಂಕೇತ" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "ಸ್ಟಾಕ್ ಓವರ್ಫ್ಲೋ" + + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "ಒಂದು ಮಾನ್ಯವಲ್ಲದ ವಿಳಾಸಕ್ಕೆ ಬರೆ" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" ++msgstr "ಒಂದು ಅಮಾನ್ಯವಾದ ವಿಳಾಸಕ್ಕೆ ಸಬ್‌ರೊಟೀನ್ ಮರಳಿಕೆ (ಸ್ಟಾಕ್ ಹಾಳಾಗಿದೆಯೆ?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "ಒಂದು ಮಾನ್ಯವಲ್ಲದ ವಿಳಾಸಕ್ಕೆ ಹೋಗು" + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" ++msgstr "ಮ್ಯಾಪ್ ಮಾಡಲಾದ ಕಡತ, ಅಮಾನ್ಯವಾದ ವಿಳಾಸ, ಹೊಂದಿಕೆಯಾಗದ ನಿಲುಕು ಮುಂತಾದವುಗಳ ಅಂತ್ಯಕ್ಕೂ ಮೀರಿ ನಿಲುಕಿಸಿಕೊಳ್ಳುವುದು" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" ++msgstr "ಇಲ್ಲ ಎಂಬ ಸಂಕೇತವನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ ಮತ್ತು ಪ್ರಯೋಜನಪಡೆಯುವಿಕೆಯ (ಎಕ್ಸಪ್ಲಾಯ್ಟೆಬಲ್) ವಿಶ್ಲೇಷಣೆ\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "ಕುಸಿತದ ಸಾಧ್ಯವಿರಬಹುದಾದ ಕಾರಣ:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "" ++msgstr "ಪ್ರಯೋಜನೆಪಡೆಯುವಿಕೆ ರೇಟಿಂಗ್ (0-9 ಅಳತೆಯಲ್ಲಿ):" + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "ಪ್ರಸಕ್ತ ಸೂಚನೆ: " + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "" ++msgstr "ಪ್ರಯೋಜನಪಡೆಯುವಿಕೆಯ (ಎಕ್ಸಪ್ಲಾಯ್ಟೆಬಲ್) ವಿಶ್ಲೇಷಣೆಯು ಏನನ್ನೂ ನೀಡಿಲ್ಲ\n" + + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" +@@ -769,76 +782,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nದಿನಚರಿ ಕಡತ FIL + msgid "Don't run PROG if STRs aren't found" + msgstr "STRಗಳು ಕಂಡುಬರದೆ ಇದ್ದಲ್ಲಿ PROG ಅನ್ನು ಚಲಾಯಿಸಬೇಡ" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "ಹಾಳಾಗಿರುವ BIOS ಕಾರಣದಿಂದಾಗಿ ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಕಾಣಿಸಿಕೊಂಡಿದೆ. ದುರದೃಷ್ಟವಶಾತ್, ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "ಕರ್ನಲ್ ತೊಂದರೆ ಉಂಟಾಗಿದೆ, ಆದರೆ ನಿಮ್ಮ ಯಂತ್ರಾಂಶವು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ, ಆದ್ದರಿಂದ ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಎದುರಾಗಿದೆ, ಆದರೆ ಕರ್ನಲ್‌ಗೆ ಸೋಂಕು ಹಿಡಿದಿದೆ (flags:%s). ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕರಿಂದ ಸೋಂಕು ವರದಿಗಳನ್ನು ತಪಾಸಣೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr " ಪರವಾನಗಿ ಸರಿ ಇರದ ಮಾಡ್ಯೂಲ್‌ಗಳು: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "" ++msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE ನಿಂದ oops ಅನ್ನು ಹೊರತೆಗೆ (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "ಕಂಡು ಬಂದ oops ಗಳನ್ನು ಶಿಷ್ಟವಾದ ಔಟ್‌ಪುಟ್‌ಗೆ ಮುದ್ರಿಸು" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಹೊಸ ತೊಂದರೆ ಕೋಶವನ್ನು ರಚಿಸು" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation ನಂತೆಯೆ, abrt.conf ನಲ್ಲಿ DumpLocation ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "ಹೊರತೆಗೆಯಲಾದ ಮಾಹಿತಿಯನ್ನು PROBLEM ನಲ್ಲಿ ಉಳಿಸು" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "ದೋಷದ ಕೋಶವನ್ನು ಜಗತ್ತು ಓದುವ ರೀತಿಯಲ್ಲಿ ಮಾಡಿ" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "ತೊಂದರೆ ಕೋಶದ ರಚನೆಯು ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ 1 ಇರುವಂತೆ ಹತೋಟಿಯಲ್ಲಿಡು" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ನು) stdout ಗೆ ಮುದ್ರಿಸು ಮತ್ತು ನಿರ್ಗಮಿಸು" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "%d ಸೆಕೆಂಡುಗಳವರೆಗೆ ಜಡವಾಗಿರುತ್ತದೆ" + + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" +@@ -863,12 +875,11 @@ msgstr "ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವನ್ನು ಬ + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "" ++msgstr "ಇಲ್ಲಿ ತಾತ್ಕಾಲಿಕ ಕಡತವನ್ನು ನಿರ್ಮಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1096,7 +1107,7 @@ msgstr "ಪೋಲಿಂಗ್ ಕಾರ್ಯಾಚರಣೆಗಳಿಗೆ ವ + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" ++msgstr "(ದೋಷನಿವಾರಣೆ) ಇಲ್ಲಿ ಡಂಪ್‌ನಿಂದ ರಚಿಸಲಾದ ತಾತ್ಕಾಲಿಕ ಆರ್ಕೈವ್ ಅನ್ನು ಅಳಿಸಬೇಡ" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1114,7 +1125,7 @@ msgstr "ಪೂರೈಕೆಗಣಕದಲ್ಲಿನ ನಿಮ್ಮ ಕಾರ + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [ಆಯ್ಕೆಗಳು]\nOperations: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1281,64 +1292,71 @@ msgstr "ಸಾಕೆಟ್ ನಿರ್ಬಂಧಿಸುವ ಕ್ರಮವನ + msgid "Failed to wrap TCP socket by SSL." + msgstr "TCP ಸಾಕೆಟ್ ಅನ್ನು SSL ಇಂದ ಆವರಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "SSL ಸಾಕೆಟ್‌ಗಾಗಿ ಕ್ಲೈಂಟ್ ಹ್ಯಾಂಡ್‌ಶೇಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "SSL3 ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ವಿಫಲಗೊಂಡಿದೆ." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "TLS ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ವಿಫಲಗೊಂಡಿದೆ." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "SSL ಸಾಕೆಟ್‌ಗೆ URL ಅನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "'%s' ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "ಪ್ರಮಾಣಪತ್ರ ಹುಕ್ ಅನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "ಹ್ಯಾಂಡ್‌ಶೇಕ್ ಕಾಲ್‌ಬ್ಯಾಕ್ ಅನ್ನು ಹೊಂದಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "ಹ್ಯಾಂಡ್‌ಶೇಕ್ ಅನ್ನು ಮರುಹೊಂದಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "SSL ಹ್ಯಾಂಡ್‌ಶೇಕ್ ಅನ್ನು ಪೂರ್ಣಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ.: NSS ದೋಷ %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL ಸಾಕೆಟ್‌ಗೆ ಅನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "ವಿರೂಪಗೊಂಡ HTTP ಪ್ರತಿಕ್ರಿಯೆ ಹೆಡರ್: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "ದತ್ತಾಂಶವನ್ನು ಸ್ವೀಕರಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ.: NSS ದೋಷ %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "ವಿರೂಪಗೊಂಡ ತುಂಡರಿಸಿದ ಪ್ರತಿಕ್ರಿಯೆ." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS ಅನ್ನು ಆರಂಭಗೊಳಿಸಲು ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "ಸುರಕ್ಷತಾ ಮಾಡ್ಯೂಲ್‌ ಅನ್ನು ಆರಂಭಗೊಳಿಸಲು ವಿಫಲಗೊಂಡಿದೆ." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS ಅನ್ನು ಸ್ಥಗಿತಗೊಳಿಸಲು ವಿಫಲಗೊಂಡಿದೆ." + +@@ -1386,20 +1404,20 @@ msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "" ++msgstr "& [-v] [-od] FILE...\n\nವಿಭಜಿತ oops ಸಂದೇಶಕ್ಕಾಗಿ ಕಡತಗಳನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡುತ್ತದೆ. ಅವುಗಳನ್ನು ಮುದ್ರಿಸಲು ಮತ್ತು/ಅಥವ ಅಳಿಸಲು ಸಾಧ್ಯವಿರುತ್ತದೆ." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "ಕಂಡುಬಂದ oopses ಅನ್ನು ಮುದ್ರಿಸು" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "ಕಂಡುಬಂದ oopses ಗಳಿಂದ ಕಡತಗಳನ್ನು ಅಳಿಸು" + + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ತೊಂದರೆ ಕೋಶವನ್ನು ಗುರುತಿಸುತ್ತದೆ" + + #: ../src/cli/abrt-cli.c:142 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +@@ -1429,46 +1447,46 @@ msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯ + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "ವರದಿ-ಮಾಡದೆ ಇರುವ ತೊಂದರೆಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "ವಿವರವಾದ ವರದಿಯನ್ನು ತೋರಿಸು" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "" ++msgstr "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "ಸ್ವಯಂವರದಿ ಮಾಡುವಿಕೆ ಸೌಲಭ್ಯವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕ ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\nಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "ಇದಕ್ಕಿಂತ ದೊಡ್ಡದಾದ ಪಠ್ಯವನ್ನು ಸಂಕ್ಷೇಪವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "ಅಂತಹ ಯಾವುದೆ ತೊಂದರೆ ಕೋಶ'%s' ಇಲ್ಲ" + + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." +@@ -1485,7 +1503,7 @@ msgstr "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿ + #: ../src/cli/status.c:104 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +-msgstr "" ++msgstr "ABRT ಗೆ %u ತೊಂದರೆ(ಗಳು) ಕಂಡುಬಂದಿದೆ. (ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಇದನ್ನು ಚಲಾಯಿಸಿ: abrt-cli list%s\n" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ko.po b/po/ko.po +index c7a6ac7..1e93de7 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -5,17 +5,16 @@ + # Translators: + # bardisch , 2011 + # eukim , 2013 +-# eukim , 2011-2012 ++# eukim , 2014 + # Jiří Moskovčák , 2011 +-# , 2011-2012 + # , 2011-2012, 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-20 04:54+0000\n" ++"Last-Translator: eukim \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora/language/ko/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -31,179 +30,190 @@ msgstr "자동 버그 보고 도구 (ABRT) " + msgid "ABRT notification applet" + msgstr "ABRT 알림 애플릿" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "전송된 보고서에는 어떤 중요한 보안 데이터도 들어 있지 않습니다. 따라서 다음번에는 어떠한 추가적 조치를 할 필요가 없습니다. \n 자동으로 제출된 익명의 충돌 보고서를 활성화하시겠습니까?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "전송된 보고서에는 어떤 중요한 보안 데이터도 들어 있지 않습니다. 따라서 다음번에는 어떠한 추가적 조치를 할 필요가 없습니다. \n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "자동으로 제출된 충돌 보고서를 활성화하시겠습니까?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "자동으로 제출된 익명의 충돌 보고서를 활성화하시겠습니까?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "DBus를 통해 NetworkManager에 연결할 수 없음: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager를 통해 네트워크 상태를 지정할 수 없음: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "문제가 감지되었습니다 " + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s 패키지에서 문제가 감지되었습니다 " + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s 및 진단 데이터가 전송되었습니다 " + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "'%s'을(를) 실행할 수 없습니다 " + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "통지를 종료할 수 없음: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "경고" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT가 감지한 문제를 사용자에게 통지하기 위한 통지 영역 애플릿" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "김은주\n오현석" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" +-msgstr "" ++msgstr "종료 (_Q)" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "숨기기" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" +-msgstr "" ++msgstr "ABRT에 대해 (_A)" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "문제가 감지되었습니다" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" +-msgstr "" ++msgstr "영원히 무시" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "열기 " + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "이미 문제가 보고되었습니다 " + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "이미 알려진 문제가 발생했습니다 " + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "보고 " + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "한 가지 문제가 발생했습니다 " + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "문제가 보고되었습니다 " + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "새로운 문제가 발생했습니다 " + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "통지를 표시할 수 없음: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio 채널에서 읽을 수 없음: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio 채널에서 인코딩을 설정할 수 없음: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio 채널의 비 차단 모드를 활성화할 수 없습니다: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'의 소유 권한을 갖을 수 없음 " + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "" ++msgstr "세션 관리자로의 연결을 오픈하는데 실패했습니다: '%s', 다음에 로그인할 때 알림이 다시 나타날 수 있습니다 " + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nABRT가 새로운 문제를 감지할 경우 사용자에게 통지하는 애플릿\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "종료 (_C)" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "" ++msgstr "기본값 (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "문제 보고 설정 " + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "System Config ABRT에 대해 " + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "ABRT에 대해 " + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "종료 " + + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" +@@ -236,8 +246,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "NUM을 클라이언트 uid로 사용 " + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "syslog에 로그 " +@@ -317,7 +327,7 @@ msgid "" + " provide valuable problem reports, ABRT will not allow you to submit this " + "problem. If you have time and want to help the developers in their effort to" + " sort out this problem, please contact them directly." +-msgstr "" ++msgstr "문제 데이터가 완료되지 않습니다. 이는 일반적으로 컴퓨터가 종료 중이거나 사용자가 로그 아웃 중에 문제가 감지될 때 발생합니다. 보다 정확하게 문제를 보고하기 위해 ABRT는 이 문제를 전송하는 것을 허용하지 않습니다. 시간이 허락하여 이 문제를 해결하기 위해 개발자에게 도움을 주려면 개발자에게 직접 연락을 취하십시오." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -339,12 +349,12 @@ msgstr "DIR에서 EVENT 실행 " + msgid "Communicate directly to the user" + msgstr "사용자에게 직접 통신 " + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "여유 작업자가 없고 버퍼가 가득 찼습니다. 아카이브 '%s'를 생략합니다 " + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -354,32 +364,32 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" ++msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY를 확인하고 abrt.conf에 지정된 저장된 아카이브를 DumpLocation에 풀어놓습니다 \n\n\nUPLOAD_DIRECTORY가 지정되어 있지 않은 경우, abrt.conf에서 \nWatchCrashdumpArchiveDir 옵션 값을 사용합니다 " + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "데몬화 " + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "동시 작업자 수 입니다. 기본값은 다음과 같습니다 " + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "잘못된 인수 개수 " + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "알 수 없는 옵션 값: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -411,12 +421,12 @@ msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus에서 문제 목록을 가져올 수 없음: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "임시 파일 '%s'을 생성할 수 없습니다" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -424,7 +434,7 @@ msgid "" + msgstr "'%s'에 작성할 수 없습니다. 무시된 오류 '%s'에서 오류 '%s'가 제거되지 않습니다 " + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s'을 '%s'로 이름 변경할 수 없습니다. 오류 '%s' 를 제거 실패했습니다 " +@@ -440,7 +450,6 @@ msgstr "& [options] -d DIR\n\nC/C++ 백트레이스 분석, 백트레이스 등 + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -448,7 +457,7 @@ msgstr "%s 용 백트레이스 구문 분석 실패 " + + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "" ++msgstr "충돌 스레드를 찾을 수 없습니다 " + + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" +@@ -485,7 +494,7 @@ msgstr "python 크래시 덤프의 UUID 및 DUPHASH를 계산하고 저장합니 + + #: ../src/plugins/abrt-action-analyze-vmcore.in:29 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "사용법: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:56 + msgid "File {0} doesn't exist" +@@ -493,21 +502,27 @@ msgstr "파일 {0}이 존재하지 않음 " + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "코어에서 oops 텍스트를 추출합니다 " + + #: ../src/plugins/abrt-action-analyze-vmcore.in:64 + msgid "" + "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "{0}을(를) 처리할 수 없습니다:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:72 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "oops 메세지를 추출할 수 없습니다: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:75 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " ++ ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "커널 로그에 하드웨어 관련 오류가 발견된 것으로 표시됩니다.\n이는 소프트웨어 문제는 아닌것 같습니다.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -526,7 +541,6 @@ msgstr "gdb가 NUM 초 이상 실행될 경우 이를 종료합니다 " + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -537,7 +551,7 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" ++msgstr "& [-v] [-r] -d DIR\n\n코어 덤프 및 해당 바이너리에서 코어덤프급 백트레이스를 생성합니다" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -546,16 +560,16 @@ msgstr "지문을 해시하지 않음" + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "" ++msgstr "core_backtrace 생성 중" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "오류: GDB에서 아무 데이터도 반화되지 않았습니다 " + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "오류: %s" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +@@ -581,7 +595,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "사용법: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\n임시 준비 영역으로 TMPDIR를 사용하여 CACHEDIR에 있는\nBUILD_IDS_FILE에 나열된 모든 빌드 ID의 디버그 정보를 설치합니다.\nSIZE에 있는 크기 보다 작게될 때 까지 CACHEDIR에 있는 오래된 파일이 삭제됩니다.\n\n -v 구문 분석함\n -y 비대화식, 모든 질문에 대해 '예'라고 가정\n --ids 디폴트: build_ids\n --tmpdir 디폴트: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache 디폴트: /var/cache/abrt-di\n --size_mb 디폴트: 4096\n -e,--exact 지정된 파일만 다운로드함\n --repo 리포지터리 검색시 사용할 패턴.\n 디폴트: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -593,11 +607,11 @@ msgstr "코어 덤프는 {0} debuginfo 파일을 참조합니다. 이중 {1}이 + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} debuginfo 파일이 설치되어 있지 않습니다 " + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "요청된 파일이 누락되어 있습니다: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -642,121 +656,121 @@ msgstr "이 디렉토리를 보관합니다 " + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "" ++msgstr "사용자 영역 코드에 의해 전송된 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "" ++msgstr "타이머/IO/비동기 이벤트에 의해 전송된 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" ++msgstr "신호에는 siginfo.si_code = SI_USER가 있습니다 " + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "종료된 파이프에 대한 쓰기에 의한 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "키보드에서 전송된 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "" ++msgstr "커널에 의해 전송된 작업 제어 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "" ++msgstr "창 크기 변경에 의해 전송된 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "알람(N) 만료에 의해 전송된 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "손상된 파이프에 쓰기로 인한 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "" ++msgstr "ABRT 신호 (abort()가 호출되었습니까?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "XCPU 신호 (CPU 시간 제한 초과)" + + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "XFSZ 신호 (파일 크기 제한 초과)" + + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "TRAP 신호 (디버거/추적기에 있는 버그일 수 있음)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "" ++msgstr "SYS 신호 (알 수 없는 syscall이 호출되었습니까?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "산술 예외 " + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "" ++msgstr "0으로 나누기 " + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "부당한 명령 (임의의 주소로 이동했습니까?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "" ++msgstr "충돌과 관련 없는 신호 " + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "스택 오버플로 " + + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "잘못된 주소에 쓰기 " + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" ++msgstr "잘못된 주소로 서브 루틴 반환 (스택 손상?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "잘못된 주소로 이동 " + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" ++msgstr "조정되지 않은 액세스, 잘못된 주소, 매핑된 파일의 끝을 지나 액세스합니다 " + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" ++msgstr "신호 번호를 가져올 수 없기 때문에 악용 가능성을 분석할 수 없습니다\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "가능한 충돌 원인: " + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "" ++msgstr "악용 수준 (0-9): " + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "현재 명령: " + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "" ++msgstr "악용 분석이 비어있습니다\n" + + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" +@@ -769,76 +783,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\n로그 파일 FILE을 확인하 + msgid "Don't run PROG if STRs aren't found" + msgstr "STR를 찾을 수 없을 경우 PROG를 실행하지 않습니다" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "BIOS 손상으로 인해 커널 관련 문제가 발생했습니다. 불행히도 이러한 문제는 커널 관리자에 의해 수정될 수 없습니다." + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "커널 관련 문제가 발생했지만 해당 하드웨어가 지원되지 않기 때문에 커널 관리자는 이 문제를 수정할 수 없습니다." + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "커널에 문제가 발생했지만 커널 자체가 손상되어 있습니다 (플래그: %s). 커널 관리자는 손상된 보고를 진단할 수 없습니다." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "잘못된 모듈: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "" ++msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE (또는 표준 입력)에서 oops를 추출합니다" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "찾아낸 oops를 표준 출력으로 인쇄합니다 " + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 생성 " + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 " + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "추출한 정보를 PROBLEM에 저장합니다 " + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 " + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "%d 초 동안 절전 " + + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" +@@ -863,12 +876,11 @@ msgstr "크래시가 너무 크기때문에 Retrace 서버를 사용할 수 없 + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "" ++msgstr "임시 파일을 생성할 수 없습니다 " + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -905,7 +917,7 @@ msgstr "서버로 부터 잘못된 응답: HTTP 메세지 내용이 없음. " + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "" ++msgstr "Retrace 서버는 패키지 '%s.%s'를 처리할 수 없습니다.\n이는 공식적인 '%s' 리포지터리입니까?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1096,7 +1108,7 @@ msgstr "폴링 작동 지연 " + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" ++msgstr "(디버그) 덤프 디렉토리에서 생성된 임시 아카이브를 삭제하지 않습니다 " + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1114,7 +1126,7 @@ msgstr "서버 상의 작업 암호 " + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [options]\n동작: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1281,64 +1293,71 @@ msgstr "소켓 차단 모드를 설정 실패했습니다. " + msgid "Failed to wrap TCP socket by SSL." + msgstr "SSL로 TCP 소켓을 랩핑하는데 실패했습니다. " + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "클라이언트 핸드쉐이크를 SSL 소켓으로 활성화하는데 실패했습니다. " + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "SSL3를 활성화하는데 실패했습니다." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "TLS를 활성화하는데 실패했습니다." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "SSL 소켓에 URL 설정 실패했습니다. " + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "'%s'에 연결할 수 없음 " + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "인증서 후크 (hook)를 설정하는데 실패했습니다. " + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "핸드쉐이크 콜백 설정에 실패했습니다. " + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "핸드쉐이크 재설정에 실패했습니다. " + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "SSL 핸드쉐이크 완료에 실패했습니다: NSS 오류 %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL 소켓 종료하는데 실패했습니다. " + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "잘못된 HTTP 응답 헤더: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "데이터 받기 실패: NSS 오류 %d. " + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "잘못된 반응입니다. " + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS 초기화 실패 " + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "보안 모듈 초기화 실패 " + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS 종료 실패 " + +@@ -1386,20 +1405,20 @@ msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "" ++msgstr "& [-v] [-od] FILE...\n\n파일을 스캔하여 분리 된 oops 메시지를 찾습니다. 메시지 출력 또는 삭제가 가능합니다." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "검색된 oopses를 출력합니다 " + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "검색된 oopses가 있는 파일을 삭제합니다 " + + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s'가 하나 이상의 문제 디렉토리를 확인했습니다 " + + #: ../src/cli/abrt-cli.c:142 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +@@ -1423,69 +1442,69 @@ msgstr "DIR에 관한 정보 출력 " + + #: ../src/cli/abrt-cli.c:150 + msgid "Print the count of the recent crashes" +-msgstr "" ++msgstr "최근 충돌 횟수를 출력" + + #: ../src/cli/abrt-cli.c:165 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "보고되지 않는 문제만 나열합니다 " + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "상세 보고를 표시합니다 " + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "지정된 타임 스탬프 보다 최신의 문제만 나열 " + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "" ++msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "이보다 더 큰 텍스트는 요약하여 표시됩니다" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "이러한 문제 디렉토리 '%s'가 없음 " + + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." +-msgstr "" ++msgstr "& status [DIR]..." + + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" +-msgstr "" ++msgstr "아무 메세지를 표시하지 않고 문제의 건수만 출력 " + + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" + + #: ../src/cli/status.c:104 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +-msgstr "" ++msgstr "ABRT에 의해 '%u' 건의 문제가 발견되었습니다. (다음을 실행하여 보다 자세한 내용을 확인합니다: abrt-cli list%s\n" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 544770c..0849e79 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -5,12 +5,11 @@ + # Translators: + # Arthur Rodrigues Araruna , 2012 + # ataliba , 2012 +-# Cleiton cleitonlima , 2011 ++# Cleiton cleitonlima , 2011,2013 + # cleitonlima , 2011 +-# Cleiton cleitonlima , 2013 +-# Glaucia Freitas , 2012 +-# Glaucia Freitas , 2012-2013 ++# Glaucia Freitas , 2012,2014 + # Jiří Moskovčák , 2011 ++# Jonatas Zamboim de Vasconcellos , 2014 + # Juranir Santos , 2013 + # Marcel, 2013 + # Marcos Lauande , 2012 +@@ -23,9 +22,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-22 05:04+0000\n" ++"Last-Translator: Glaucia Freitas \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/fedora/language/pt_BR/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -41,177 +40,188 @@ msgstr "Ferramenta para o relatório automático de erros" + msgid "ABRT notification applet" + msgstr "miniaplicativo de notificação do ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "O relatório que será enviado não contém nenhum dado sensitivo de segurança. Portanto, não é necessário lhe encomodar da próxima vez e lhe requerer quaisquer ações no futuro. Você deseja habilitar os relatórios de travamento anônimos submetidos?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "O relatório que será enviado não contém nenhum dado sensitivo de segurança. Portanto, não é necessário lhe encomodar da próxima vez e lhe requerer quaisquer ações no futuro. \n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "Você quer habilitar os relatórios de travamento submetidos automaticamente?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "Você quer habilitar os relatórios de travamento anônimos submetidos automaticamente?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "Não é possível conectar ao NetworkManager via DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Não foi possível determinar o status usando o NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Foi detectado um problema" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Foi detectado um problema no pacote %s" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s e os dados do diagnóstico foram submetidos" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Não é possível executar '%s'" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "O mini aplicativo da área de notificação para notificar o usuário sobre os problemas detectados pelo ABRT " + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Ricardo Gyorfy \nGlaucia Cintra\nTaylon Silmer \nTeseu " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Sair" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Esconder" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_Sobre" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Problema detectado" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Sempre ignorar" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Abrir" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "O Problema já foi Reportado" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Um erro conhecido ocorreu" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Relatar" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Ocorreu um Problema" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Um problema foi relatado" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Um novo problema ocorreu" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Não é possível mostrar a notificação: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Não é possivel ler a partir do canal gio: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é possível definir codificação no canal gio: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Não é possível ligar o modo de não bloqueamento para o canal gio: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não foi possível obter propriedade de '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Não é possível abrir o diretório para escrita '%s'" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Falha ao abrir conexão para o gerenciador de sessão: '%s' a notificação deve reaparecer no próximo login" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nO mini aplicativo que notifica o usuário quando novos problemas foram detectados pelo ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "_Fechar" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "_Padrão" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Problema de configuração reportado" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Sobre o sistema de configuração ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Sobre" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Sair" + +@@ -246,8 +256,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "Utilize o NUM como uid de cliente" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Log para o syslog" +@@ -349,12 +359,12 @@ msgstr "Executar o EVENT no DIR" + msgid "Communicate directly to the user" + msgstr "Comunicar diretamente com o usuário" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "Nenhum trabalhador livre e buffer total. Omitindo o arquivo '%s'" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -364,32 +374,32 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" ++msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nObserva UPLOAD_DIRECTORY e desempacota arquivos de entrada no DumpLocation\nespecificado em abrt.conf\n\nSe UPLOAD_DIRECTORY não for fornecido, usa um valor de\nWatchCrashdumpArchiveDir opção de abrt.conf" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Daemize" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "Número de trabalhadores concomitantes. Padrão é" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Tamanho máximo de cache em MiB. O padrão é" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Número de argumentos é inválido" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Valor de opção desconhecida: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -421,12 +431,12 @@ msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Não foi possível obter lista de problemas a partir do abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Não foi possível criar arquivo temporário '%s'" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +444,7 @@ msgid "" + msgstr "Não foi possível escrever em '%s'. Problema '%s' não será removido dos problemas ignorados '%s'" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Não é possível renomear '%s' para '%s'. Falha ao remover problema '%s'" +@@ -450,7 +460,6 @@ msgstr "& [options] -d DIR\n\nAnalisa o C/C++backtrace, gera o hash de duplicaç + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -458,7 +467,7 @@ msgstr "Análise do backtrace falhou por %s" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "" ++msgstr "Opção de travamento não foi encontrada" + + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" +@@ -495,7 +504,7 @@ msgstr "& [-v] -d DIR\n\nCalcula e salva o UUID e DUPHASH dos despejos de travam + + #: ../src/plugins/abrt-action-analyze-vmcore.in:29 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "Uso: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:56 + msgid "File {0} doesn't exist" +@@ -503,7 +512,7 @@ msgstr "O arquivo {0} não existe" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "Extraindo o texto do oops do núcleo" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:64 + msgid "" +@@ -513,11 +522,17 @@ msgstr "Não foi possível processar {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:72 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "Não foi possível extrair a mensagem do oops: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:75 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Texto do oops extraído com sucesso" ++ ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "O log od kernel indica que os erros do hardware foram detectados.\nÉ mais provável que não seja um problema de software.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -536,7 +551,6 @@ msgstr "Terminar o gdb se ele rodar por mais de NUM segundos" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -547,7 +561,7 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" ++msgstr "& [-v] [-r] -d DIR\n\nCria um backtrace do coredump-level do despejo do núcleo e binário correspondente" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -591,7 +605,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "Uso: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nInstala debuginfos para todos os build-ids listados em BUILD_IDS_FILE\npara realizar um CACHEDIR, usando TMPDIR como área temporária.\nArquivos antigos no CACHEDIR são removidos até que estejam menores do que SIZE.\n\n -v Estar em verbose\n -y Não-interativo, assume 'Yes' para todas as questões\n --ids Default: build_ids\n --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache Default: /var/cache/abrt-di\n --size_mb Default: 4096\n -e,--exact Faz o Download somente dos arquivos especificados\n --repo Padrão a utilizar ao buscar por repos. \n Default: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -603,11 +617,11 @@ msgstr "Referências do coredump {0} arquivos de debuginfo, {1} deles não foi i + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} de arquivos debuginfo não estão instalados" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Arquivo requerido faltando: {0} " + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -664,7 +678,7 @@ msgstr "Sinal tem siginfo.si_code = SI_USER" + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "Sinal devido à gravação para fechar o pipe" + + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 +@@ -684,11 +698,11 @@ msgstr "Sinal enviado pelo redimensionamento da janela" + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "Sinal enviado pela expiração do alarme(N) " + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "Sinal devido à gravação em pipe interrompido" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +@@ -696,19 +710,19 @@ msgstr "Sinal do ABRT (abort() foi chamado?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "Sinal do XCPU (sob o limite de tempo da CPU)" + + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "Sinal do XFSZ (sob o limite de tamanho do arquivo)" + + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "Sinal do TRAP (pode ser um 'erro' em um debugger/rastreador)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "" ++msgstr "Sinal do SYS (syscall desconhecido foi chamado?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +@@ -724,7 +738,7 @@ msgstr "Instrução ilegal (saltar para endereço aleatório?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "" ++msgstr "Sinal relacionado ao não travamento" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +@@ -746,11 +760,11 @@ msgstr "Saltar para um endereço inválido" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" ++msgstr "Acesso depois do final do arquivo mapeado, endereço inválido, acesso desalinhado, etc" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" ++msgstr "Não foi possível obter sinal no e realizar análise de exploração.\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +@@ -758,7 +772,7 @@ msgstr "Provável razão da saída inesperada:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "" ++msgstr "Classificação de exploração (escala de 0-9)" + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +@@ -766,7 +780,7 @@ msgstr "Instrução atual:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "" ++msgstr "Análise de exploração apareceu vazia.\n" + + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" +@@ -779,73 +793,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nObserve o arquivo de log FILE, e + msgid "Don't run PROG if STRs aren't found" + msgstr "Não execute o PROG se o STRs não for encontrado" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "Ocorreu um problema de kernel devido a uma BIOS quebrada. Infelizmente, tais problemas não são solucionávies para os mantenedores de kernel." + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "Ocorreu um problema com o kernel mas seu kernel não é suportado, portanto os mantedores do kernel não podem reparar este problema." + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Ocorreu um problema no kernel, mas seu kernel foi adulterado (flags: %s). Mantenedores do kernel não são capazes de diagnosticar relatórios adulterados." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Módulos danificados: %s" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "" ++msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtrai o oops de FILE (ou entrada padrão)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Exibir erros encontrados no resultado padrão" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Crie novo diretório de problema no DIR para todos os oops encontrados" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Mesmo que -d DumpLocation, DumpLocation está especificado no abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "Salva a informação extraída em PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Tornar o diretório de problema mundial legível" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "Alterna a criação de diretório do problema para 1 por segundo" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "Não foi possível atualizar o problema: mais do que um oops encontrado" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Dormindo por %d segundos" +@@ -873,7 +886,6 @@ msgstr "A servidor de retraçamento não pode ser usado, por causa que o travame + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1106,7 +1118,7 @@ msgstr "Atrasar as operações em conjunto" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" ++msgstr "(debug) não remova arquivos temporários criados a partir do diretório de despejo em" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1124,7 +1136,7 @@ msgstr "senha de sua tarefa no servidor" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [options]\nOperações: create/status/backtrace/log/batch/explorável" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1291,64 +1303,71 @@ msgstr "Falha ao definir o modo de bloqueio de soquete." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Falha ao envolver o soquete TCP pelo SSL." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Falha ao ativar o cliente aperto de mão ao soquete SSL." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "Falha ao habilitar SSL3." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "Falha ao habilitar TLS." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Falha ao definir o URL ao soquete SSL." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Não foi possível se conectar a '%s'." + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Falha ao definir o gancho do certificado." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Falha ao definir o aperto de mão do callback." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Falha ao restabelecer o aperto de mão." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Falha ao completar a negociação SSL: erro NSS %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Falha ao fechar o soquete SSL." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Resposta do cabeçalho HTTP malformada: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Recebimento de dados falhou: erro do NSS %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Resposta em blocos malformados." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Falha ao inicializar o NSS" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Falha ao inicializar o módulo de seguridade" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Falha ao desligar NSS" + +@@ -1396,20 +1415,20 @@ msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "" ++msgstr "& [-v] [-od] FILE...\n\nArquivos de scans para mensagens divididas do oops. Pode imprimir e/ou removê-los." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "Imprimir oopses encontrados" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "Remover arquivos com os oopses encontrados" + + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' identifica mais do que um diretório de problema" + + #: ../src/cli/abrt-cli.c:142 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +@@ -1439,46 +1458,46 @@ msgstr "Mostrar a contagem das quebras recentes" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& lista [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Listar somente os problemas não reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Exibir relatório detalhado" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "Listar apenas problemas mais recentes que o carimbo de data e hora especificado" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "" ++msgstr "Listar apenas problemas mais recentes que o carimbo de data e hora especificado" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "O recurso de Autoreporting está desabilitado. Por favor, tente habilitá-lo emitindo o comando 'abrt-auto-reporting enabled' como usuário com previlégios root.\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "Texto maior do que este será exibido abreviado" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "Não há tal diretório de problemas '%s'" + + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 74029aa..df67296 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -3,17 +3,16 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Cheng-Chia Tseng , 2011-2012 + # Chester Cheng , 2012 + # Jiří Moskovčák , 2011 +-# Terry Chuang , 2011-2013 ++# Terry Chuang , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-25 04:54+0000\n" ++"Last-Translator: Terry Chuang \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora/language/zh_TW/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -29,177 +28,188 @@ msgstr "自動臭蟲回報工具" + msgid "ABRT notification applet" + msgstr "ABRT 通知面板程式" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "將傳送的回報未包含任何安全性敏感資料。因此下次不需要再打擾您,也不會要求您進一步動作。\n您是否要啟用自動提交匿名當機資料回報的功能?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "將傳送的回報未包含任何安全性敏感資料。因此下次不需要再打擾您,也不會要求您進一步動作。 \n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "您是否希望啟用自動提交的當機回報?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "您是否希望啟用自動提交的匿名當機回報?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "無法透過 DBus 連接至 NetworkManager:%s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "無法透過 NetworkManager 判定網路狀態:%s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "已偵測到問題" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "已偵測到 %s 軟體包發生問題" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s 和診斷資料已提交" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "無法執行「%s」" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "無法關閉通知:%s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "警告" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "會通知使用者有關於 ABRT 所發現的問題的通知區域面板程式" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Eunju Kim , 2009.\nTerry Chuang , 2009, 2010.\nCheng-Chia Tseng , 2011, 2012." + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "退出(_Q)" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "隱藏" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "關於(_A)" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "偵測到的問題" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "永遠忽略" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "開啟" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "此問題已被回報過" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "遭遇已知問題" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "回報" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "遭遇到問題" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "已回報問題" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "遭遇新問題" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "無法顯示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "無法從 gio 通道讀取:「%s」" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "無法設定 gio 通道上的編碼:%s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "無法為 gio 通道啟動不阻擋模式:%s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "無法掌握「%s」的擁有權" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "無法開啟目錄以寫入「%s」" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "無法開啟與作業階段管理員的連線:「%s」,通知可能會在下次登入時再次出現" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\n新問題被 ABRT 偵測到時通知使用者的面板程式\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "關閉(_C)" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "預設值(_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "問題回報組態" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "關於系統組態 ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "關於" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "退出" + +@@ -234,8 +244,8 @@ msgstr "& [選項]" + msgid "Use NUM as client uid" + msgstr "使用 NUM 作為客戶端 UID" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "紀錄至 syslog" +@@ -337,12 +347,12 @@ msgstr "於 DIR 執行 EVENT" + msgid "Communicate directly to the user" + msgstr "直接與使用者溝通" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "無工作器可用,緩衝也塞滿。略過「%s」封存" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -354,30 +364,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\n監視 UPLOAD_DIRECTORY,並將傳入的封存檔解開放入 abrt.conf \n中指定的 DumpLocation\n\n如果沒有提供 UPLOAD_DIRECTORY 位置,則使用 abrt.conf 中\nWatchCrashdumpArchiveDir 選項的其中一值" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "幕後處理" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "同時工作序數量。預設為 " + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "最大快取大小,單位為 MiB。預設為 " + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "引數數量無效" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "選項值不明:「%s」\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -409,12 +419,12 @@ msgstr "無法從 abrt-dbus 取得問題資料:%s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題清單:%s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "無法建立暫存檔「%s」" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -422,7 +432,7 @@ msgid "" + msgstr "無法寫入「%s」。問題「%s」不會從忽略的問題「%s」中移除" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "無法將「%s」重新命名為「%s」。無法移除問題「%s」" +@@ -438,7 +448,6 @@ msgstr "& [選項] -d DIR\n\n在問題目錄 DIR 內分析 C/C++ 追蹤資訊、 + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -507,6 +516,12 @@ msgstr "無法抽出 oops 訊息:「{0}」" + msgid "Oops text extracted successfully" + msgstr "Oops 內文已成功抽出" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "Kernel 日誌顯示已偵測到硬體錯誤。\n這很可能不是軟體上的錯誤。\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -524,7 +539,6 @@ msgstr "若 gdb 執行超過 NUM 秒就終止它" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -579,7 +593,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "使用方法: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nInstalls debuginfos for all build-ids listed in BUILD_IDS_FILE\nto CACHEDIR, using TMPDIR as temporary staging area.\nOld files in CACHEDIR are deleted until it is smaller than SIZE.\n\n -v Be verbose\n -y Noninteractive, assume 'Yes' to all questions\n --ids Default: build_ids\n --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache Default: /var/cache/abrt-di\n --size_mb Default: 4096\n -e,--exact Download only specified files\n --repo Pattern to use when searching for repos.\n Default: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -591,11 +605,11 @@ msgstr "核心傾印參照 {0} 份 debuginfo 檔,其中的 {1} 份尚未安裝 + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} 個debuginfo 檔案尚未安裝" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "請求的檔案遺失:{0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -767,73 +781,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\n監看記錄檔 FILE,當該檔 + msgid "Don't run PROG if STRs aren't found" + msgstr "若找不到 STR 時則不要執行 PROG" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "Kernel 發生問題因為 BIOS 損壞。很不幸的,kernel 維護人員無法修正此問題。" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "發生了一項 kernel 問題,不過您的硬體不受到支援,因此 kernel 維護人員無法修正此問題。" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "遭遇一項內核問題,但您的內核已經損壞 (旗標:%s)。內核維護者無法診斷損壞的回報有什麼問題。" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "損壞的模組:%s。" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\n從 FILE (或標準輸入) 抽出 oops" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "列印找到的 oops 於標準輸出上" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "與 -d DumpLocation 相同,DumpLocation 於 abrt.conf 內指定" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "將抽出的資訊存入 PROBLEM 中" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "讓問題目錄全世界都可以讀取" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "節制問題目錄的建立速度為每秒 1 個" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "將搜尋字串列印在 stdout 上並離開" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "無法更新問題:找到超過一份 oops" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "正睡眠 %d 秒" +@@ -861,7 +874,6 @@ msgstr "回追伺服器無法使用,因為當掉資訊過大。請嘗試本地 + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1279,64 +1291,71 @@ msgstr "無法設定 socket 阻擋模式。" + msgid "Failed to wrap TCP socket by SSL." + msgstr "無法透過 SSL 包裝 TCP socket。" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "無法啟用對於 SSL socket 的客戶端握手。" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "無法啟用 SSL3。" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "無法啟用 TLS。" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "無法設定網址為 SSL socket。" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "無法連接至「%s」" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "無法設定憑證 hook。" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "無法設定握手回呼。" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "無法重設握手。" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "無法完成 SSL 握手:NSS 錯誤 %d。" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "無法關閉 SSL socket。" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "格式不良的 HTTP 回應標頭:「%s」" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "資料接收失敗:NSS 錯誤 %d。" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "格式不良的 chunked 回應。" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "無法初始化 NSS。" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "無法初始化安全模組。" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "無法關閉 NSS。" + +@@ -1427,43 +1446,43 @@ msgstr "列印最近程式崩潰的數目" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [選項] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "僅列出尚未回報的問題" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "顯示詳細的回報" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "僅列出比指定的時間戳記更近期的問題" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "僅列出比指定的時間戳記更之前的問題" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "Autoreporting 功能已停用。請考慮以擁有 root 權限的使用者\n身份,透過「abrt-auto-reporting enabled」 來啟用它\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [選項] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "大於此的文字會刪減顯示" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "沒有這個問題目錄「%s」" +-- +1.8.3.1 + diff --git a/SOURCES/0041-Translation-updates.patch b/SOURCES/0041-Translation-updates.patch new file mode 100644 index 0000000..c875f4b --- /dev/null +++ b/SOURCES/0041-Translation-updates.patch @@ -0,0 +1,67211 @@ +From 40b4d8c21a58c4e6f2d8ea29d632a20f9d9a09db Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 3 Mar 2014 14:50:28 +0100 +Subject: [ABRT PATCH 41/41] Translation updates + +All of the following languages are completely translated: +as bn_IN de es fr gu hi +it ja kn ko ml mr or pa +pt_BR ru ta te zh_CN zh_TW + +Closes rhbz#1030314 + +Signed-off-by: Jakub Filak +--- + po/af.po | 210 ++++++++++++++------------- + po/af_ZA.po | 210 ++++++++++++++------------- + po/aln.po | 210 ++++++++++++++------------- + po/am.po | 210 ++++++++++++++------------- + po/ar.po | 210 ++++++++++++++------------- + po/as.po | 311 +++++++++++++++++++++------------------- + po/ast.po | 210 ++++++++++++++------------- + po/az.po | 210 ++++++++++++++------------- + po/bal.po | 210 ++++++++++++++------------- + po/be.po | 210 ++++++++++++++------------- + po/bg.po | 211 ++++++++++++++------------- + po/bn.po | 212 ++++++++++++++------------- + po/bn_IN.po | 423 ++++++++++++++++++++++++++++-------------------------- + po/bo.po | 210 ++++++++++++++------------- + po/br.po | 210 ++++++++++++++------------- + po/brx.po | 210 ++++++++++++++------------- + po/bs.po | 210 ++++++++++++++------------- + po/ca.po | 210 ++++++++++++++------------- + po/cs.po | 218 +++++++++++++++------------- + po/cs_CZ.po | 210 ++++++++++++++------------- + po/cy.po | 210 ++++++++++++++------------- + po/da.po | 211 ++++++++++++++------------- + po/de.po | 243 ++++++++++++++++--------------- + po/de_CH.po | 210 ++++++++++++++------------- + po/dz.po | 210 ++++++++++++++------------- + po/el.po | 210 ++++++++++++++------------- + po/en_GB.po | 213 +++++++++++++++------------- + po/en_US.po | 210 ++++++++++++++------------- + po/eo.po | 210 ++++++++++++++------------- + po/es.po | 253 +++++++++++++++++---------------- + po/es_ES.po | 210 ++++++++++++++------------- + po/et.po | 213 +++++++++++++++------------- + po/eu.po | 210 ++++++++++++++------------- + po/eu_ES.po | 210 ++++++++++++++------------- + po/fa.po | 210 ++++++++++++++------------- + po/fa_IR.po | 210 ++++++++++++++------------- + po/fi.po | 214 +++++++++++++++------------- + po/fr.po | 243 ++++++++++++++++--------------- + po/ga.po | 210 ++++++++++++++------------- + po/gl.po | 213 +++++++++++++++------------- + po/gu.po | 286 +++++++++++++++++++------------------ + po/he.po | 212 ++++++++++++++------------- + po/hi.po | 380 ++++++++++++++++++++++++++----------------------- + po/hr.po | 210 ++++++++++++++------------- + po/hr_HR.po | 210 ++++++++++++++------------- + po/hu.po | 216 +++++++++++++++------------- + po/hy.po | 210 ++++++++++++++------------- + po/ia.po | 210 ++++++++++++++------------- + po/id.po | 210 ++++++++++++++------------- + po/ilo.po | 210 ++++++++++++++------------- + po/is.po | 210 ++++++++++++++------------- + po/it_IT.po | 210 ++++++++++++++------------- + po/ja.po | 246 +++++++++++++++++--------------- + po/ja_JP.po | 210 ++++++++++++++------------- + po/ka.po | 210 ++++++++++++++------------- + po/kk.po | 210 ++++++++++++++------------- + po/km.po | 210 ++++++++++++++------------- + po/ks.po | 210 ++++++++++++++------------- + po/ku.po | 210 ++++++++++++++------------- + po/ky.po | 210 ++++++++++++++------------- + po/la.po | 210 ++++++++++++++------------- + po/lo.po | 210 ++++++++++++++------------- + po/lt.po | 213 +++++++++++++++------------- + po/lv.po | 210 ++++++++++++++------------- + po/mai.po | 210 ++++++++++++++------------- + po/mg.po | 210 ++++++++++++++------------- + po/mk.po | 210 ++++++++++++++------------- + po/ml.po | 292 ++++++++++++++++++++------------------ + po/mn.po | 210 ++++++++++++++------------- + po/mr.po | 245 +++++++++++++++++--------------- + po/ms.po | 210 ++++++++++++++------------- + po/ms_MY.po | 210 ++++++++++++++------------- + po/my.po | 210 ++++++++++++++------------- + po/nb.po | 213 +++++++++++++++------------- + po/nds.po | 210 ++++++++++++++------------- + po/ne.po | 210 ++++++++++++++------------- + po/nl.po | 238 +++++++++++++++++-------------- + po/nn.po | 210 ++++++++++++++------------- + po/no.po | 210 ++++++++++++++------------- + po/nso.po | 210 ++++++++++++++------------- + po/or.po | 277 +++++++++++++++++++----------------- + po/pa.po | 241 ++++++++++++++++--------------- + po/pl.po | 238 +++++++++++++++++-------------- + po/pt.po | 317 ++++++++++++++++++++++------------------- + po/ro.po | 210 ++++++++++++++------------- + po/ru.po | 246 +++++++++++++++++--------------- + po/ru_RU.po | 210 ++++++++++++++------------- + po/si.po | 210 ++++++++++++++------------- + po/sk.po | 215 +++++++++++++++------------- + po/sl.po | 210 ++++++++++++++------------- + po/sq.po | 210 ++++++++++++++------------- + po/sr.po | 210 ++++++++++++++------------- + po/sr@latin.po | 210 ++++++++++++++------------- + po/sv.po | 216 +++++++++++++++------------- + po/ta.po | 241 ++++++++++++++++--------------- + po/ta_IN.po | 210 ++++++++++++++------------- + po/te.po | 280 +++++++++++++++++++----------------- + po/tg.po | 210 ++++++++++++++------------- + po/th.po | 210 ++++++++++++++------------- + po/tl.po | 210 ++++++++++++++------------- + po/tr.po | 440 +++++++++++++++++++++++++++++---------------------------- + po/uk.po | 238 +++++++++++++++++-------------- + po/uk_UA.po | 210 ++++++++++++++------------- + po/ur.po | 210 ++++++++++++++------------- + po/vi.po | 210 ++++++++++++++------------- + po/wo.po | 210 ++++++++++++++------------- + po/xh.po | 210 ++++++++++++++------------- + po/zh_CN.po | 253 +++++++++++++++++---------------- + po/zh_HK.po | 210 ++++++++++++++------------- + po/zu.po | 210 ++++++++++++++------------- + 110 files changed, 13402 insertions(+), 11269 deletions(-) + +diff --git a/po/af.po b/po/af.po +index 6bb49a4..3357963 100644 +--- a/po/af.po ++++ b/po/af.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora/language/af/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/af_ZA.po b/po/af_ZA.po +index cdd8e39..0227111 100644 +--- a/po/af_ZA.po ++++ b/po/af_ZA.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/fedora/language/af_ZA/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/aln.po b/po/aln.po +index a421a68..d2668a3 100644 +--- a/po/aln.po ++++ b/po/aln.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora/language/aln/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/am.po b/po/am.po +index f3a2702..2e1f9f4 100644 +--- a/po/am.po ++++ b/po/am.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Amharic (http://www.transifex.com/projects/p/fedora/language/am/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/ar.po b/po/ar.po +index 74d1d72..c20b11b 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora/language/ar/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,188 @@ msgstr "أداة تبليغ العلّل الآليّة" + msgid "ABRT notification applet" + msgstr "بريمج الإخطار إيه.بي.آر.تي (ABRT)" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "تحذير" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "بريمج منطقة التنبيه لتنبيه المستخدم عن المشاكل المٌكتشفة عن طريق ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "أحمد محمد عربي " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "إخفاء" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "تقرير" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -231,8 +242,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -334,12 +345,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -351,15 +362,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -406,12 +417,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -419,7 +430,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -435,7 +446,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -504,6 +514,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -521,7 +537,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -764,73 +779,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -858,7 +872,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1276,64 +1289,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1424,43 +1444,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/as.po b/po/as.po +index a69a999..b13723c 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -6,15 +6,14 @@ + # Amitakhya Phukan , 2012 + # Jiří Moskovčák , 2011 + # ngoswami , 2011,2013 +-# ngoswami , 2011-2013 +-# ngoswami , 2013 ++# ngoswami , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 16:41+0000\n" ++"Last-Translator: ngoswami \n" + "Language-Team: Assamese (http://www.transifex.com/projects/p/fedora/language/as/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -30,177 +29,188 @@ msgstr "স্বচালিত বাগ সংবাদন সঁজুলি + msgid "ABRT notification applet" + msgstr "ABRT অধিসূচনা এপ্লেট" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "পঠাব লগিয়া সংবাদে কোনো সুৰক্ষা সংবেদ্য তথ্য অন্তৰ্ভুক্ত নকৰে। সেয়েহে আপোনাক পিছত আমনি কৰাটো প্ৰয়োজনীয় নহয় আৰু আপোনাৰ পৰা কোনো কাৰ্য্যৰ প্ৰয়োজনীয়তা নাই। \nআপুনি স্বচালিতভাৱে জমা দিয়া বেনামী স্খলন সংবাদসমূহ সামৰ্থবান কৰিব বিচাৰে নে?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "পঠাব লগিয়া সংবাদে কোনো সুৰক্ষা সংবেদ্য তথ্য অন্তৰ্ভুক্ত নকৰে। সেয়েহে আপোনাক পিছত আমনি কৰাটো প্ৰয়োজনীয় নহয় আৰু আপোনাৰ পৰা কোনো কাৰ্য্যৰ প্ৰয়োজনীয়তা নাই। \n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "আপুনি স্বচালিতভাৱে জমা দিয়া স্খলন সংবাদ সামৰ্থবান কৰিব খোজে নে?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "আপুনি স্বচালিতভাৱে জমা দিয়া বেনামী স্খলন সংবাদসমূহ সামৰ্থবান কৰিব খোজে নে?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "DBus ৰ সহায়ত NetworkManager ৰ সৈতে সংযোগ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ৰ সহায়ত নেটৱাৰ্কৰ অৱস্থা নিৰ্ধাৰণ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "এটা সমস্যাৰ সন্ধান পোৱা গৈছে" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s সৰঞ্জামত এটা সমস্যাই দেখা দিছে" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s আৰু বিশ্লেষণ তথ্য জমা দিয়া হৈছে" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "'%s' প্ৰেৰণ কৰিব নোৱাৰি" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "সতৰ্কবাৰ্তা" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "অধিসূচনা স্থান যি ব্যৱহাৰকাৰীসমূহক ABRT দ্বাৰা চিনাক্ত কৰা বিষয়সমূহৰ বিষয়ে জ্ঞাত কৰে" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "নীলমদ্যুতি গোস্বামী (ngoswami@redhat.com)" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "প্ৰস্থান কৰক (_Q)" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "লুকাওক" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "বিষয়ে (_A)" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "চিৰকালৰ বাবে উপেক্ষা কৰক" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "খোলক" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "সমস্যাক ইতিমধ্যে সংবাদন কৰা হৈছে" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "এটা জ্ঞাত সমস্যা দেখা দিছে" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "সংবাদ" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "এটা সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "এটা সমস্যা সংবাদন কৰা হৈছে" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "এটা নতুন সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "অধিসূচনা দেখুৱাব নোৱাৰি: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চেনেলৰ পৰা পঢ়িব নোৱাৰি: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চেনেলত এনক'ডিং সংহতি কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অৱস্থা আৰম্ভ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "অধিবেশন ব্যৱস্থাপকলৈ সংযোগ খোলিবলে ব্যৰ্থ: '%s', অধিসূচনা পৰৱৰ্তী লগিনত পুনৰ উপস্থিত হব পাৰে" ++msgstr "অধিবেশন ব্যৱস্থাপকলৈ সংযোগ খোলিবলৈ ব্যৰ্থ: '%s', অধিসূচনা পৰৱৰ্তী লগিনত উপস্থিত হব পাৰে" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nএপ্লেট যি ABRT দ্বাৰা নতুন সমস্যাসমূহ চিনাক্ত কৰোতে অধিসূচিত কৰে\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "বন্ধ কৰক (_C)" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "অবিকল্পিতসমূহ (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "সংৰূপ সংবাদন কৰোতে সমস্যা" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "চিস্টেম সংৰূপ ABRT ৰ বিষয়ে" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "বিষয়ে" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "প্ৰস্থান কৰক" + +@@ -224,7 +234,7 @@ msgstr "সমস্যা ডাইৰেকটৰি" + + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" +-msgstr "সংৰূপ নথিপত্ৰ" ++msgstr "সংৰূপ ফাইল" + + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 +@@ -235,8 +245,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "NUM k ক্লাএন্ট uid হিচাপে ব্যৱহাৰ কৰক" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "syslog -লে লগ কৰক" +@@ -338,12 +348,12 @@ msgstr "DIR ত EVENT চলাওক" + msgid "Communicate directly to the user" + msgstr "ব্যৱহাৰকাৰীৰ সৈতে প্ৰত্যক্ষভাৱে যোগাযোগ কৰক" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "কোনো মুক্ত কৰ্মি নাই আৰু সম্পূৰ্ণ বাফাৰ। আৰ্কাইভ '%s' বাদ দিয়া হৈছে" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -353,32 +363,32 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" ++msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY ক চায় আৰু আহি থকা আৰ্কাইভক abrt.conf ত ধাৰ্য্যত DumpLocation\nত আনপেক কৰে\n\nযদি UPLOAD_DIRECTORY কৰা নাই, ই abrt.conf ৰ পৰা\nWatchCrashdumpArchiveDir বিকল্প ব্যৱহাৰ কৰে " + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "ডিমাইজ" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "সমসাময়িক কৰমি সংখ্যা। অবিকল্পিত হল" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "MiB ত সৰ্বাধিক ক্যাশ আকাৰ। অবিকল্পিত হল" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "তৰ্কৰ অবৈধ সংখ্যা" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -410,12 +420,12 @@ msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ৰ পৰা সমস্যা তালিকা প্ৰাপ্ত কৰিব নোৱাৰি: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "অস্থায়ী ফাইল '%s' সৃষ্টি কৰিব নোৱাৰি" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -423,7 +433,7 @@ msgid "" + msgstr "'%s' লৈ লিখিব নোৱাৰি। সমস্যা '%s' ক উপেক্ষা কৰা সমস্যাসমূহ '%s' ৰ পৰা আতৰোৱা নহব" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' ক '%s' লৈ পুনৰ নামকৰণ কৰিব নোৱাৰি। সমস্যা '%s' ত আতৰাবলে ব্যৰ্থ।" +@@ -439,7 +449,6 @@ msgstr "& [options] -d DIR\n\nC/C++ বেকট্ৰেইচ বিশ্ল + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -484,29 +493,35 @@ msgstr "& [-v] -d DIR\n\npython স্খলন ডাম্পসমূহৰ U + + #: ../src/plugins/abrt-action-analyze-vmcore.in:29 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "ব্যৱহাৰ: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:56 + msgid "File {0} doesn't exist" +-msgstr "{0} নথিপত্ৰ নাই" ++msgstr "{0} ফাইল অস্তিত্বহিন" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "কেন্দ্ৰৰ পৰা oops লিখনী নিষ্কাষণ কৰা" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:64 + msgid "" + "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "{0} প্ৰক্ৰিয়াকৰণ কৰিব নোৱাৰি:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:72 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "oops বাৰ্তা নিষ্কাষণ কৰিব নোৱাৰি: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:75 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ কৰা হল" ++ ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "কাৰনেল লগত হাৰ্ডৱেৰ ত্ৰুটি চিনাক্ত কৰা হৈছে।\nই সম্ভবত এটা চফ্টৱেৰ সমস্যা নহয়।\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -525,7 +540,6 @@ msgstr "gdb -ক Kill কৰক যদি ই NUM ছেকেণ্ডসমূ + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -580,7 +594,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "ব্যৱহাৰ: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nBUILD_IDS_FILE ত তালিকাভুক্ত সকলো build-ids ৰ বাবে ডিবাগইনফোক\nCACHEDIR লৈ ইনস্টল কৰে, TMPDIR ক অস্থায়ী স্টেগিং স্থান হিচাপে ব্যৱহাৰ কৰাকৈ।\nCACHEDIR ৰ পুৰনি ফাইলসমূহক মচি পেলোৱা হয় যেতিয়ালৈকে ই SIZE কে সৰু নহয়।\n\n -v ভাৰবৌছ হওক\n -y অভাৱবিনিময়ী, সকলো প্ৰশ্নৰ বাবে 'Yes' ধৰি লওক\n --ids অবিকল্পিত: build_ids\n --tmpdir অবিকল্পিত: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache অবিকল্পিত: /var/cache/abrt-di\n --size_mb অবিকল্পিত: 4096\n -e,--exact কেৱল ধাৰ্য্যত ফাইলসমূহ ডাউনল'ড কৰক\n --repo ভঁৰালসমূহৰ বাবে সন্ধান কৰোতে ব্যৱহাৰ কৰিব লগিয়া বিন্যাস\n অবিকল্পিত: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -588,19 +602,19 @@ msgstr "{0} খোলিব নোৱাৰি: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "কেন্দ্ৰডাম্পে {0} debuginfo নথিপত্ৰসমূহ প্ৰসংগ কৰে, সিহতৰ মাজৰ {1} ইনস্টল নাই" ++msgstr "কেন্দ্ৰডাম্পে {0} debuginfo ফাইলসমূহ প্ৰসংগ কৰে, সিহতৰ মাজৰ {1} ইনস্টল নাই" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "debuginfo ফাইলসমূহৰ {0} ইনস্টল নাই" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "অনুৰোধ কৰা ফাইল সন্ধানহিন: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +-msgstr "সন্ধানহিন debuginfo নথিপত্ৰ: {0}" ++msgstr "সন্ধানহিন debuginfo ফাইল: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" +@@ -625,7 +639,7 @@ msgid "" + "\n" + "Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" + "FILEs are preserved (never deleted)." +-msgstr "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n\nসমস্যা ডাইৰেকটৰিসমূহ (-d) অথবা DIRসমূহত নথিপত্ৰসমূহ (-f) মচি পেলায় যেতিয়ালৈকে সিহত SIZE কে সৰু নহয়।\nFILEs সংৰক্ষণ কৰা (কেতিয়াও মচা নহয়)।" ++msgstr "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n\nসমস্যা ডাইৰেকটৰিসমূহ (-d) অথবা DIRসমূহত ফাইলসমূহ (-f) মচি পেলায় যেতিয়ালৈকে সিহত SIZE কে সৰু নহয়।\nFILEs সংৰক্ষণ কৰা (কেতিয়াও মচা নহয়)।" + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -633,7 +647,7 @@ msgstr "সম্পূৰ্ণ সমস্যা ডাইৰেকটৰি + + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" +-msgstr "এই ডাইৰেকটৰিৰ ভিতৰত থকা নথিপত্ৰসমূহ মচি পেলাওক" ++msgstr "এই ডাইৰেকটৰিৰ ভিতৰত থকা ফাইলসমূহ মচি পেলাওক" + + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +@@ -751,7 +765,7 @@ msgstr "এক্সপ্লয়টেবুল হাৰ (0-9 স্কেই + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "বৰ্তমান নিৰ্দেশ:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -768,76 +782,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nলগ ফাইল FILE চা + msgid "Don't run PROG if STRs aren't found" + msgstr "PROG নচলাব যদি STRs পোৱা নাযায়" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "ভগ্ন BIOS ৰ বাবে এটা কাৰনেল সমস্যা দেখা দিলে। দূৰ্ভাগ্যজনকভাৱে, এই ধৰণৰ সমস্যা কাৰনেল ব্যৱস্থাপকসকলে ঠিক কৰিব নোৱাৰে।" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "এটা কাৰনেল সমস্যা দেখা দিছে, কিন্তু আপোনাৰ হাৰ্ডৱেৰ অসমৰ্থিত, সেয়েহে কাৰনেল ব্যৱস্থাপকসকল এই সমস্যা ঠিক কৰিবলৈ অক্ষম।" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "এটা কাৰনেল সমস্যা দেখা দিলে, কিন্তু আপোনাৰ কাৰনেল আবিলিত (flags:%s)। কাৰনেল ব্যৱস্থাপকসমূহ আবিলিত সংবাদসমূহ বিশ্লেষণ কৰিবলে অক্ষম।" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr " লেতেৰা মডিউলসমূহ: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE ৰ পৰা oops নিষ্কাষণ কৰক (অথবা প্ৰাথমিক ইনপুট)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "প্ৰামাণিক আউটপুটত বিচাৰি পোৱা oopsসমূহ প্ৰিন্ট কৰক" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR ত নতুন সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation নিচিনা একে, DumpLocation ক abrt.conf ত ধাৰ্য্য কৰা হয়। " + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "PROBLEM ত নিষ্কাষিত তথ্য সংৰক্ষণ কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "সমস্যা ডাইৰেকটৰি বিশ্ব পঢ়িব পৰা কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "থ্ৰটল ডাইৰেকটৰি নিৰ্মাণ প্ৰতি ছেকেণ্ডত ১ টা" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প্ৰিন্ট কৰি প্ৰস্থান কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "সমস্যাক আপডেইট কৰিব নোৱাৰি: এটাৰ অধিক oops পোৱা গল" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "%d ছেকেণ্ডৰ বাবে নিদ্ৰা অৱস্থাত" + + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" +@@ -862,12 +875,11 @@ msgstr "ৰিট্ৰেইচ চাৰ্ভাৰ ব্যৱহাৰ ক + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "চিহ্নিত স্থানত অস্থায়ী ফাইল সৃষ্টি কৰিব নোৱাৰি" ++msgstr "চিহ্নিত স্থানত অস্থায়ী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1006,7 +1018,7 @@ msgstr "আপোনাৰ সমস্যা ডাইৰেকটৰি স্ + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "আৰ্কাইভত অসুয়া নথিপত্ৰসমূহ অন্তৰ্ভুক্ত (যেনে symlinks) আৰু সেয়েহে প্ৰক্ৰিয়া কৰিব নোৱাৰি।" ++msgstr "আৰ্কাইভত অসুয়া ফাইলসমূহ অন্তৰ্ভুক্ত (যেনে symlinks) আৰু সেয়েহে প্ৰক্ৰিয়া কৰিব নোৱাৰি।" + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1095,7 +1107,7 @@ msgstr "পলিং কাৰ্য্যসমূহ স্থগিত কৰ + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(ডিবাগ কৰক) চিহ্নিত স্থানত ডাম্প ডাইৰেকটৰিৰ পৰা সৃষ্টি কৰা অস্থায়ী আৰ্কাইভ নমচিব" ++msgstr "(ডিবাগ) চিহ্নিত স্থানত ডাম্প ডাইৰেকটৰিৰ পৰা সৃষ্টি কৰা অস্থায়ী আৰ্কাইভ নমচিব" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1113,7 +1125,7 @@ msgstr "চাৰ্ভাৰত আপোনাৰ কাৰ্য্যৰ প + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [options]\nকাৰ্য্য: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1201,13 +1213,13 @@ msgstr ".xsession-errors সংগ্ৰহ কৰক" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "~/.xsession-errors নথিপত্ৰৰ পৰা প্ৰাসংগিক শাৰীসমূহ সংৰক্ষণ কৰক" ++msgstr "~/.xsession-errors ফাইলৰ পৰা প্ৰাসংগিক শাৰীসমূহ সংৰক্ষণ কৰক" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "~/.xsession-errors নথিপত্ৰ স্কেন কৰে আৰু সেই শাৰীসমূহ যি এক্সিকিউটেবুলসমূহৰ নাম অন্তৰ্ভুক্ত কৰে সেয়া সংৰক্ষণ কৰে। ফলাফল 'xsession_errors' উপাদান হিচাপে সংৰক্ষণ কৰা হয়।" ++msgstr "~/.xsession-errors ফাইল স্কেন কৰে আৰু সেই শাৰীসমূহ যি এক্সিকিউটেবুলসমূহৰ নাম অন্তৰ্ভুক্ত কৰে সেয়া সংৰক্ষণ কৰে। ফলাফল 'xsession_errors' উপাদান হিচাপে সংৰক্ষণ কৰা হয়।" + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1230,7 +1242,7 @@ msgstr "'%s' ৰ সৈতে সংযোগ কৰোতে এটা ত্ + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "প্ৰেৰক নথিপত্ৰ অবৈধ: '%s'।" ++msgstr "প্ৰেৰক ফাইল অবৈধ: '%s'।" + + #: ../src/plugins/https-utils.c:100 + #, c-format +@@ -1280,64 +1292,71 @@ msgstr "চকেট প্ৰতিৰোধ অৱস্থা সংহতি + msgid "Failed to wrap TCP socket by SSL." + msgstr "SSL দ্বাৰা TCP চকেট মেৰিয়াবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "SSL চকেটলে ক্লাএন্ট হেন্ডশেক সামৰ্থবান কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "SSL3 সামৰ্থবান কৰিবলৈ ব্যৰ্থ।" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "TLS সামৰ্থবান কৰিবলৈ ব্যৰ্থ।" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "SSL চকেটলে URL সংহতি কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "'%s' ৰ সৈতে সংযোগ কৰিব নোৱাৰি" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "প্ৰমাণপত্ৰ হুক সংহতি কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "হেণ্ডশেক কলবেক সংহতি কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "হেণ্ডশেক পুনৰসংহতি কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "SSL হেণ্ডছেইক সম্পূৰ্ণ কৰিবলে ব্যৰ্থ: NSS ত্ৰুটি %d।" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL চকেট বন্ধ কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "ক্ষতিগ্ৰস্থ HTTP প্ৰতিক্ৰিয়া হেডাৰ: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "তথ্য গ্ৰহন কৰা ব্যৰ্থ হল: NSS ত্ৰুটি %d।" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "স্খলিত আংশিক প্ৰতিক্ৰিয়া।" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS আৰম্ভ কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "সুৰক্ষা মডিউল আৰম্ভ কৰিবলে ব্যৰ্থ।" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS বন্ধ কৰিবলে ব্যৰ্থ।" + +@@ -1398,7 +1417,7 @@ msgstr "প্ৰাপ্ত oopses ৰ সৈতে ফাইলসমূহ + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' এ এটাৰ অধিক সমস্যা ডাইৰেকটৰি চিনাক্ত কৰে" + + #: ../src/cli/abrt-cli.c:142 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +@@ -1428,46 +1447,46 @@ msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "কেৱল সংবাদন-নকৰা সমস্যাবোৰ তালিকাভুক্ত কৰক" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "বিৱৰিত সংবাদ দেখুৱাওক" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকৈ শেহতীয়া সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পতকৈ পুৰনি সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "স্বসংবাদন বৈশিষ্ট্য অসামৰ্থবান কৰা আছে। অনুগ্ৰহ কৰি ইয়াক ৰুট সুবিধা থকা এজন\nব্যৱহাৰকাৰী ৰূপে 'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "িয়াতকৈ ডাঙৰ লিখনীক এব্ৰিজ্ড দেখুৱা হব" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "এই ধৰণৰ কোনো সমস্যা ডাইৰেকটৰি '%s' নাই" + + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." +@@ -1524,7 +1543,7 @@ msgstr "GConf সংৰূপ সংগ্ৰহ কৰক" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "অনুপ্ৰয়োগৰ GConf ডাইৰেকটৰিৰ পৰা সংৰূপ সাঁচক" ++msgstr "এপ্লিকেচনৰ GConf ডাইৰেকটৰিৰ পৰা সংৰূপ সাঁচক" + + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" +@@ -1534,7 +1553,7 @@ msgstr "gconftool-2 --recursive-list /apps/executable চলাওক আৰু + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +-msgstr "চিস্টেম-বিস্তাৰিত vim সংৰূপ নথিপত্ৰসমূহ সংগ্ৰহ কৰক" ++msgstr "চিস্টেম-বিস্তাৰিত vim সংৰূপ ফাইলসমূহ সংগ্ৰহ কৰক" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +@@ -1544,11 +1563,11 @@ msgstr "/etc/vimrc আৰু /etc/gvimrc সঞ্চয় কৰক" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "/etc ত vimrc আৰু gvimrc নথিপত্ৰসমূহ আছে নে নীৰিক্ষন কৰে আৰু সিহতক system_vimrc আৰু system_gvimrc হিচাপে সঞ্চয় কৰে।" ++msgstr "/etc ত vimrc আৰু gvimrc ফাইলসমূহ আছে নে নীৰিক্ষন কৰে আৰু সিহতক system_vimrc আৰু system_gvimrc হিচাপে সঞ্চয় কৰে।" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +-msgstr "আপোনাৰ vim সংৰূপ নথিপত্ৰসমূহ সংগ্ৰহ কৰক" ++msgstr "আপোনাৰ vim সংৰূপ ফাইলসমূহ সংগ্ৰহ কৰক" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +diff --git a/po/ast.po b/po/ast.po +index c0d2573..4b024e8 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Asturian (http://www.transifex.com/projects/p/fedora/language/ast/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,188 @@ msgstr "Ferramienta d'Informe de Fallos Automática" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Avisu" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -231,8 +242,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -334,12 +345,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -351,15 +362,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -406,12 +417,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -419,7 +430,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -435,7 +446,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -504,6 +514,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -521,7 +537,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -764,73 +779,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -858,7 +872,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1276,64 +1289,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1424,43 +1444,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/az.po b/po/az.po +index 6667c5d..0cca18a 100644 +--- a/po/az.po ++++ b/po/az.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora/language/az/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/bal.po b/po/bal.po +index 6e6779f..59860b1 100644 +--- a/po/bal.po ++++ b/po/bal.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Balochi (http://www.transifex.com/projects/p/fedora/language/bal/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/be.po b/po/be.po +index 6b04da0..d44b0ad 100644 +--- a/po/be.po ++++ b/po/be.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Belarusian (http://www.transifex.com/projects/p/fedora/language/be/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/bg.po b/po/bg.po +index ca909ea..23b19a3 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -3,13 +3,12 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Valentin Laskov , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora/language/bg/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +25,188 @@ msgstr "Автоматичен инструмент за рапортуване + msgid "ABRT notification applet" + msgstr "Известяващ аплет на ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Бе открит проблем" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Бе открит проблем в пакета %s" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Не мога да изпълня '%s'" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Внимание" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Област на известяващия аплет, информиращ за проблемите, забелязани от ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Валентин Ласков, 2011" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Скрий" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Открит е проблем" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Съобщи" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Възникна проблем" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не мога да взема собствеността на '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nАплет, известяващ потребителя, когато нов проблем бъде открит от ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -231,8 +241,8 @@ msgstr "& [опции]" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Запис в системния журнал" +@@ -334,12 +344,12 @@ msgstr "Стартирай EVENT върху DIR" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -351,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -406,12 +416,12 @@ msgstr "Не мога да получа данни за проблем от abrt + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не мога да получа списъка проблеми от abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -419,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -435,7 +445,6 @@ msgstr "& [options] -d DIR\n\nАнализира C/C++ проследяване, + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -504,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -521,7 +536,6 @@ msgstr "Убий gdb ако работи повече от NUM секунди" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -764,73 +778,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nНаблюдавай лог фа + msgid "Don't run PROG if STRs aren't found" + msgstr "Не стартирай PROG ако STR не бъдат намерени" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Възникна проблем в ядрото, но ядрото Ви е опорочено (флагове:%s). Поддържащите ядрото не могат да диагностицират проблеми в такива ядра." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Отпечатвай намерените oops на стандартния изход" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Също като -d DumpLocation, DumpLocation е зададено в abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Направи директорията с проблема достъпна за четене от всички" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Отпечатва търсените низове на стандартния изход и излиза" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -858,7 +871,6 @@ msgstr "Не може да бъде използван анализиращ съ + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1276,64 +1288,71 @@ msgstr "Провал при задаването на блокиращ режи + msgid "Failed to wrap TCP socket by SSL." + msgstr "Провал при поставянето на TCP сокета в SSL обвивка." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Провал при свързването на клиента към SSL сокета." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Провал при изпращането на URL към SSL сокета." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Провал при задаване обхвата на сертификата." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Провал при задаване съгласуването на обратната връзка." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Провал при рестартиране на съгласуването." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Провал при затварянето на SSL сокета." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Провал при приемането на данни: NSS грешка %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Грешно форматиран отговор" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Провал при инициализирането на NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Провал при инициализирането на модула за сигурност." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Провал при изключване на NSS." + +@@ -1424,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Покажи детайлен рапорт" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/bn.po b/po/bn.po +index 7d334e1..44a5395 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -9,14 +9,12 @@ + # Mahay Alam Khan , 2012 + # newton , 2012 + # Robin Mehdee , 2012 +-# runab , 2009-2011 +-# runa , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bengali (http://www.transifex.com/projects/p/fedora/language/bn/)\n" + "MIME-Version: 1.0\n" +@@ -33,177 +31,188 @@ msgstr "স্বয়ংক্রিয় বাগ রিপোর্টিং ব + msgid "ABRT notification applet" + msgstr "ABRT বিজ্ঞেপ্তির অ্যাপ্লেট" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "একটি সমস্যা সনাক্ত হয়েছে" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s প্যাকেজের মধ্যে একটি বিপর্যয় সনাক্ত করা হয়েছে" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "'%s' সঞ্চালন করতে ব্যর্থ" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "সতর্কবার্তা" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "রুণা ভট্টাচার্য্য" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "আড়াল করুন" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "একটি সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত অ্যাপ্লেট\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -238,8 +247,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" +@@ -341,12 +350,12 @@ msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -358,15 +367,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -413,12 +422,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -426,7 +435,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -442,7 +451,6 @@ msgstr "& [options] -d DIR\n\nAnalyzes C/C++ backtrace, generates duplication ha + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -511,6 +519,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -528,7 +542,6 @@ msgstr "NUM সেকেন্ডের বেশি সময় ধরে gdb চ + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -771,73 +784,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "কার্নেলে সমস্যা দেখা দিয়েছে, কিন্তু আপনার কার্নেল চিহ্নযুক্ত (flags:%s) হয়েছে। কার্নেল রক্ষণাবেক্ষণকারী চিহ্নযুক্ত রিপোর্টের সমাধান করতে অক্ষম।" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "প্রমিত আউটপুটের মধ্যে print দ্বারা oops-র সম্মুখীন হওয়া গিয়েছে" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা হয়" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -865,7 +877,6 @@ msgstr "বিপর্যয়ের পরিমাণ অত্যন্ত + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1283,64 +1294,71 @@ msgstr "সকেট ব্লক করার মোড নির্ধার + msgid "Failed to wrap TCP socket by SSL." + msgstr "SSL সহযোগে TCP সকেট র‍্যাপ করতে ব্যর্থ" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "SSL সকেটের সাথে ক্লায়েন্ট হ্যান্ড-শেক সক্রিয় করতে ব্যর্থ" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "SSL সকেটের URL নির্ধারণ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "সার্টিফিকেট হুক প্রাপ্ত করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "হ্যান্ড-শেক কল-ব্যাক নির্ধারণ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "হ্যান্ড-শেল পুনরায় নির্ধারণ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL সকেট বন্ধ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "তথ্য প্রাপ্ত করতে ব্যর্থ: NSS সংক্রান্ত ত্রুটি %d।" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "ত্রুটিপূর্ণ বিভক্ত উত্তর।" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS আরম্ভ করতে বিফল।" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "নিরাপত্তার মডেল আরম্ভ করতে ব্যর্থ" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS বন্ধ করতে ব্যর্থ।" + +@@ -1431,43 +1449,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/bn_IN.po b/po/bn_IN.po +index 0c3b5a7..f37d15d 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -4,18 +4,17 @@ + # + # Translators: + # Biraj Karmakar , 2012 ++# bnin , 2013 + # Jiří Moskovčák , 2011 +-# runab , 2009-2011 + # runa , 2013 +-# runa , 2011-2012 +-# bnin , 2013 ++# bnin , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-13 08:25+0000\n" ++"Last-Translator: bnin \n" + "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora/language/bn_IN/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -31,177 +30,188 @@ msgstr "স্বয়ংক্রিয় বাগ রিপোর্টিং ব + msgid "ABRT notification applet" + msgstr "ABRT বিজ্ঞেপ্তির অ্যাপ্লেট" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "যে রিপোর্টটি পাঠানো হবে তাতে নিরাপত্তার দিক থেকে সংবেদনশীল কোনো ডেটা নেই। তাই পরের বার অাপনাকে অার কোনো ঝামেলা সামলাতে হবে না এবং কোনো কিছু করার দরকারও হবে না। \nঅাপনি কি 'নাম উল্লেখ না করে অাপনাঅাপনি ক্র্যাশ রিপোর্ট জমা দিন' চালু করতে চান?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "যে রিপোর্টটি পাঠানো হবে তাতে নিরাপত্তার দিক থেকে সংবেদনশীল কোনো ডেটা নেই। তাই পরের বার অাপনাকে অার কোনো ঝামেলা সামলাতে হবে না এবং কোনো কিছু করার দরকারও হবে না। \n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "অাপনি কি স্বয়ংক্রিয় ভাবে জমা দেওয়া ক্র্যাশ রিপোর্ট সক্রিয় করতে চান?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "অাপনি কি স্বয়ংক্রিয় ভাবে জমা দেওয়া নামবিহীন ক্র্যাশ রিপোর্ট সক্রিয় করতে চান?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "DBus-র মাধ্যমে NetworkManager-র সাথে সংযোগ স্থাপন করা সম্ভব নয়: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager-র মাধ্যমে নেটওয়ার্ক নির্ধারণ করা সম্ভব নয়: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "একটি সমস্যা সনাক্ত হয়েছে" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s প্যাকেজের মধ্যে একটি বিপর্যয় সনাক্ত করা হয়েছে" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s এবং ডায়গনস্টিক ডেটা জমা দেওয়া হয়েছে" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "'%s' সঞ্চালন করতে ব্যর্থ" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "সূচনাবার্তা বন্ধ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "সতর্কবার্তা" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "রুণা ভট্টাচার্য্য" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "প্রস্থান করুন (_Q)" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "আড়াল করুন" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "সম্বন্ধে (_A)" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "সমস্যা সনাক্ত হয়েছে" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" +-msgstr "সবসময়ের জন্য উপেক্ষা করুন" ++msgstr "সবসময়ের জন্য উপেক্ষা করুন" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "খুলুন" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "সমস্যার কথা ইতিমধ্যেই জানানো হয়েছে" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "একটি জ্ঞাত সমস্যা দেখা দিয়েছে" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "একটি সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" +-msgstr "একটি সমস্যার বিষয়ে জানানো হয়েছে" ++msgstr "একটি সমস্যার কথা জানানো হয়েছে" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "একটি নতুন সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "'%s' লেখার জন্য ডিরেক্টরি খুলতে ব্যর্থ" ++msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "সেশন ম্যানেজারে সংযোগ খুলতে ব্যর্থ: '%s', পরবর্তী লগিনে বিজ্ঞপ্তি অাবার দেখা যেতে পারে" ++msgstr "সেশন পরিচালকর সংযোগ খুলতে ব্যর্থ: '%s', পরবর্তী লগ-ইনে বিজ্ঞপ্তি অাবার উপস্থিত হতে পারে" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত অ্যাপ্লেট\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "বন্ধ করুন (_C)" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "ডিফল্ট (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "কনফিগারেশনের বিষয়ে রিপোর্ট করতে সমস্যা" ++msgstr "কনফিগারেশন রিপোর্টিং সংক্রান্ত সমস্যা" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "সিস্টেম কনফিগারেশন ABRT বিষয়ে" ++msgstr "সিস্টেম কনফিগারেশন ABRT সম্বন্ধে" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "বিষয়ে" ++msgstr "সম্বন্ধে" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "প্রস্থান করুন" + +@@ -236,8 +246,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" +@@ -258,7 +268,7 @@ msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্ট + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" +-msgstr "'%s' সংশোধন করা যাবে না" ++msgstr "'%s' উপাদান সংশোধন করা যায় না" + + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +@@ -269,30 +279,30 @@ msgstr "অনুমোদিত নয়" + + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" +-msgstr "সংশোধনের জন্য সমস্যাটিতে পৌঁছানো যাচ্ছে না" ++msgstr "সংশোধনের জন্য সমস্যা অ্যাক্সেস করা যায় না" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে সিস্টেম লগ দেখুন।" ++msgstr "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" +-msgstr "'%s' কোনো বৈধ নাম নয়" ++msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" + + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "'%s' মাপ পাওয়া সম্ভব নয়" ++msgstr "'%s' এর মাপ পাওয়া যায় না" + + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" +-msgstr "কোনো প্রবলেম স্পেস পড়ে নেই" ++msgstr "কোনো সমস্যা স্পেস পড়ে নেই" + + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "'%s' প্রবলেম ডিরেক্টরি থেকে '%s' মোছা যাবে না" ++msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" + + #: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 + #, c-format +@@ -317,7 +327,7 @@ msgid "" + " provide valuable problem reports, ABRT will not allow you to submit this " + "problem. If you have time and want to help the developers in their effort to" + " sort out this problem, please contact them directly." +-msgstr "সমস্যা ডেটা অসম্পূর্ণ। কম্পিউটার বন্ধ করার সময়ে বা ব্যবহারকারীর লগ অাউটের সময়ে সনাক্ত করা কোনো সমস্যার ক্ষেত্রে সাধারণত এমটা দেখা দেয়। গুরুত্বপূর্ণ ক্ষেত্রেই সমস্যার বিষয়ে তথ্য জমা দিতে দেওয়া হয়, অার তাই ABRT এখন অাপনাকে এই সমস্যাটির বিষয়ে জানাতে দেবে না। অাপনার হাতে সময় থাকলে এবং এই সমস্যাটির সমাধানে ডেভলপারদের সাহায্য করতে চাইলে, অনুগ্রহ করে সরাসরি তাদের সংগে যোগাযোগ করুন।" ++msgstr "সমস্যা ডেটা অসম্পূর্ণ। কম্পিউটার শাট ডাউনের সময় বা ব্যবহারকারী লগ অাউটের সময়ে কোনো সমস্যা দেখা দিলে সাধারণত এমনটা হয়ে থাকে। গুরুত্বপূর্ণ সমস্যাই বিষয়েই রিপোর্ট করার কথা মাথায় রেখে, ABRT অাপনাকে এই সমস্যার বিষয়টি জমা দিতে দেবে না। অাপনার হাতে সময় থাকলে এবং এই সমস্যাটির সমাধানে বিকাশকারীদের সাহায্য করতে চাইলে, অনুগ্রহ করে সরাসরি তাদের সংগে যোগাযোগ করুন।" + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -339,12 +349,12 @@ msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" + msgid "Communicate directly to the user" + msgstr "ব্যবহারকারীর সাথে সরাসরি যোগাযোগ করুন" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "কোনো সম্পূর্ণ ওয়ার্কার এবং সম্পূর্ণ বাফার নেই। '%s' সংরক্ষণাগার বাদ দেওয়া হচ্ছে" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -354,32 +364,32 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" ++msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY দেখে এবং abrt.conf এ নির্দিষ্ট DumpLocation এ\nঅাগত সংরক্ষণাগার অান-প্যাক করে\n\nUPLOAD_DIRECTORY দেওয়া না থাকলে, abrt.conf থেকে\nWatchCrashdumpArchiveDir বিকল্পের একটি মান ব্যবহার করা হয়" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Daemize" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "একসাথে উদ্ভূত ওয়ার্কারের সংখ্যা। ডিফল্ট হল" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "সর্বাধিক ক্যাশে মাপ MiB এ। ডিফল্ট হল" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "অজানা বিকল্প মান: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -411,23 +421,23 @@ msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "অস্থায়ী ফাইল '%s' তৈরি করা সম্ভব নয়" ++msgstr "'%s' অস্থায়ী ফাইল তৈরি করা যায় না" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "'%s' তে লেখা সম্ভব নয়। উপেক্ষিত সমস্যা '%s' থেকে সমস্যা '%s' সরানো হবে না" ++msgstr "'%s' এ লেখা যায় না। সমস্যা '%s' সরানো যাবে না, '%s' উপেক্ষা সমস্যাগুলি থেকে" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "'%s' এর নাম বদলে '%s' করা সম্ভব নয়। সমস্যা '%s' সরানো গেল না" ++msgstr "'%s' এর নাম বদলে '%s' এ করা যায় না। '%s' সমস্যা সরানো যায়নি" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -440,7 +450,6 @@ msgstr "& [options] -d DIR\n\nAnalyzes C/C++ backtrace, generates duplication ha + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -462,19 +471,19 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\noops প্রবলেম ডিরেক্টরি DIR'র জন্য UUID এবং DUPHASH গণনা ও সংরক্ষণ করে" ++msgstr "& [-v] -d DIR\n\nUUID এবং DUPHASH গণনা এবং সংরক্ষণ করে, oops সমস্যা ডিরেক্টরি DIR এর জন্য" + + #: ../src/plugins/abrt-action-analyze-xorg.c:73 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for xorg problem directory DIR" +-msgstr "& [-v] -d DIR\n\nxorg প্রবলেম ডিরেক্টরি DIR'র জন্য UUID ও DUPHASH গণনা ও সংরক্ষণ করে" ++msgstr "& [-v] -d DIR\n\nUUID এবং DUPHASH গণনা এবং সংরক্ষণ করে, xorg সমস্যা ডিরেক্টরি DIR এর জন্য" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "মডিউল '%s' লোড করা হয়েছে - এই ক্র্যাশের বিষয়ে রিপোর্ট করবেন না" ++msgstr "মডিউল '%s' লোড করা হয়েছে - এই ক্র্যাশ রিপোর্ট করবেন না" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -485,7 +494,7 @@ msgstr "& [-v] -d DIR\n\nPython ক্র্যাশ ডাম্পের UUID + + #: ../src/plugins/abrt-action-analyze-vmcore.in:29 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "ব্যবহার: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:56 + msgid "File {0} doesn't exist" +@@ -493,21 +502,27 @@ msgstr "{0} ফাইল উপস্থিত নেই" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "কোর থেকে oops পাঠ্য নিষ্কাশন" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:64 + msgid "" + "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "{0} প্রক্রিয়া করা যায় না:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:72 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "oops বার্তা বের করে অানা যায় না: '{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:75 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" ++ ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "কার্নেল লগ সূচিত করছে যে হার্ডওয়্যার ত্রুটি সনাক্ত করা হয়েছে।\nএটি খুব সম্ভবত কোনো সফ্টওয়্যার সমস্যা নয়।\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -526,7 +541,6 @@ msgstr "NUM সেকেন্ডের বেশি সময় ধরে gdb চ + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -537,7 +551,7 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nকোর ডাম্প এবং সংশ্লিষ্ট বাইনারি থেকে কোরডাম্প-লেবেল ব্যাকট্রেস তৈরি করে" ++msgstr "& [-v] [-r] -d DIR\n\ncoredump-level backtrace তৈরি করে, core dump এবং সংশ্লিষ্ট বাইনারি থেকে" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -546,11 +560,11 @@ msgstr "ফিংগারপ্রিন্ট হ্যাশ করা হব + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "কোর ব্যাকট্রেস (_b) তৈরি করা হচ্ছে" ++msgstr "core_backtrace প্রস্তুত করা হচ্ছে" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "ত্রুটি: GDB কোনো ডেটা ফেরত দেয়নি" ++msgstr "ত্রুটি: GDB কোনো ডেটা ফেরত পাঠায়নি" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format +@@ -581,7 +595,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "ব্যবহার: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nBUILD_IDS_FILE এ তালিকাবদ্ধ সকল build-ids এর জন্য debuginfos ইনস্টল করে\nCACHEDIR এ, TMPDIR অস্থায়ী স্টেজিং অঞ্চল হিসাবে ব্যবহার করে।\nCACHEDIR এর পুরনো ফাইলগুলি SIZE এর থেকে ছোট হওয়া পর্যন্ত মুছে দেওয়া হয়।\n\n -v Be verbose\n -y Noninteractive, assume 'Yes' to all questions\n --ids Default: build_ids\n --tmpdir Default: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache Default: /var/cache/abrt-di\n --size_mb Default: 4096\n -e,--exact Download only specified files\n --repo Pattern to use when searching for repos.\n Default: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -593,11 +607,11 @@ msgstr "Coredump দ্বারা {0} debuginfo ফাইলগুলি অ + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} debuginfo ফাইল ইনস্টল করা হয়নি" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "অনুরোধ জানানো ফাইল অনুপস্থিত: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -618,7 +632,7 @@ msgstr "কোর ডাম্প আপলোড করা হবে কি? ( + msgid "" + "Do you want to generate a stack trace locally? (It may download a huge " + "amount of data but reporting can't continue without stack trace)." +-msgstr "অাপনি কি স্থানীয় ভাবে স্ট্যাক ট্রেস প্রস্তুত করতে চান? (এর ফলে বৃহৎ মাপের তথ্যও ডাউনলোড করা হতে পারে কিন্তু স্ট্যাক ট্রেস বিনা রিপোর্ট দায়ের করা সম্ভব নয়)।" ++msgstr "অাপনি কি স্থানীয় ভাবে একটি stack trace প্রস্তুত করতে চান? (এটি হয়তো বিশাল পরিমাণ ডেটা ডাউনলোড করতে পারে কিন্তু stack trace ছাড়া রিপোর্টিং জারি রাখা যায় না)।" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -642,39 +656,39 @@ msgstr "এই ডিরেক্টরিটি সংরক্ষণ করা + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "ইউজারস্পেস কোড দ্বারা প্রেরিত সিগন্যাল" ++msgstr "userspace কোড দ্বারা প্রেরিত সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "টাইমার/IO/async ইভেন্ট দ্বারা প্রেরিত সংকেত" ++msgstr "timer/IO/async ইভেন্ট দ্বারা প্রেরিত সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "সংকেতে রয়েছে siginfo.si_code = SI_USER" ++msgstr "সংকেতে অাছে siginfo.si_code = SI_USER" + + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "ক্লোজড পাইপে লেখার কারণে সংকেত" ++msgstr "অাবদ্ধ পাইপে লেখার কারণে সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "কীবোর্ড দ্বারা পাঠানো সংকেত" ++msgstr "কীবোর্ড দ্বারা প্রেরিত সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "কার্নেল দ্বারা পাঠানো জব কন্ট্রোল সংকেত" ++msgstr "কার্নেল দ্বারা প্রেরিত জব কন্ট্রোল সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "উইন্ডো পুনঃমাপ দ্বারা পাঠানো সংকেত" ++msgstr "উইন্ডো রিসাইজ দ্বারা প্রেরিত সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "অ্যালার্ম(N) মেয়াদউত্তীর্ণ দ্বারা পাঠানো সংকেত" ++msgstr "অ্যালার্ম(N) মেয়াদ উত্তীর্ণ দ্বারা প্রেরিত সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +@@ -686,11 +700,11 @@ msgstr "ABRT সংকেত (abort() কল করা হয়েছে?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "XCPU সংকেত (CPU ঊর্ধ্ব সময় সীমা)" ++msgstr "XCPU সংকেত (CPU সময়সীমার ঊর্ধ্বে)" + + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "XFSZ সংকেত (ফাইলের মাপের সীমার ঊর্ধ্বে)" ++msgstr "XFSZ সংকেত (ফাইলের মাপ সীমার ঊর্ধ্বে)" + + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +@@ -702,7 +716,7 @@ msgstr "SYS সংকেত (অজানা syscall কল করা হয়ে + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "পাটিগণিত এক্সেপশন" ++msgstr "গাণিতিক ব্যতিক্রম" + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +@@ -710,53 +724,53 @@ msgstr "শূন্য দ্বারা বিভাজন" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "বেঅাইনি নির্দেশ (কোনো অনির্দিষ্ট ঠিকানায় চলে যাবেন?)" ++msgstr "বেঅাইনি নির্দেশ (একটি অনির্দিষ্ট ঠিকানায় চলে যাবেন?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "নন-ক্র্যাশ সম্বন্ধীয় সংকেত" ++msgstr "নন-ক্র্যাশ সম্পর্কিত সংকেত" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "স্টেক ওভারফ্লো" ++msgstr "স্ট্যাক ওভারফ্লো" + + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "অবৈধ ঠিকানায় লিখন" ++msgstr "একটি অবৈধ ঠিকানায় লিখুন" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "সাবরুটিনের একটি অবৈধ ঠিকানায় ফেরা (ক্ষতিগ্রস্ত হওয়া স্টেক?)" ++msgstr "সাব-রুটিন একটি অবৈধ ঠিকানায় ফিরে অাসে (দূষিত স্ট্যাক?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "একটি অবৈধ ঠিকানায় চলে যাওয়া" ++msgstr "একটি অবৈধ ঠিকানায় চলে যান" + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "ম্যাপ ফাইলের সমাপ্তি অতিক্রান্ত অ্যাক্সেস, অবৈধ ঠিকানা, অসজ্জিত অ্যাক্সেস ইত্যাদি" ++msgstr "ম্যাপড ফাইলের সমাপ্তি, অবৈধ ঠিকানা, অসজ্জিত অ্যাক্সেস ইত্যাদি অ্যাক্সেস অতিক্রম" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "'সিগন্যাল নো' পেতে পারে না এবং এক্সপ্লয়টেবিলিটি বিশ্লেষণ করতে পারে না\n" ++msgstr "সংকেত না পাওয়া যায় না এবং exploitability বিশ্লেষণ করা যায় না\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "ক্র্যাশ করার সম্ভাব্য কারণ: " ++msgstr "ক্র্যাশের সম্ভাব্য কারণ: " + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "এক্সপ্লয়টেবল রেটিং (0-9 স্কেল): " ++msgstr "Exploitable রেটিং (0-9 স্কেল): " + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "বর্তমান নির্দেশ: " + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "এক্সপ্লয়টেবিলিটি বিশ্লেষণে কোনো ফলাফল নেই\n" ++msgstr "Exploitability বিশ্লেষণ খালি\n" + + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" +@@ -769,76 +783,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nWatch log file FILE, run PROG wh + msgid "Don't run PROG if STRs aren't found" + msgstr "STR পাওয়া না গেলে PROG সঞ্চালন করা হবে না" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "ভাঙা BIOS এর কারণে একটি কার্নেল সমস্যা দেখা দিয়েছে। দুর্ভাগ্যবশতঃ, এই ধরনের সমস্যা কার্নেল রক্ষণাবেক্ষণকারীদের দ্বারা সারানো সম্ভব নয়।" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "একটি কার্নেল সমস্যা দেখা দিয়েছে, কিন্তু অাপনার হার্ডওয়্যার অসমর্থিত, তাই কার্নেল রক্ষণাবেক্ষণকারীরা তা সারাতে অপরাগ।" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "kernel সংক্রান্ত একটি সমস্যা দেখা দিয়েছে, কিন্তু আপনার ব্যবহৃত kernel-টি টেইন্ট হয়েছে (flags:%s)। Kernel-র পরিচালকরা টেইন্ট হওয়া kernel-র রিপোর্ট থেকে সমস্যার কারণ নির্ণয় করতে সক্ষম হবেন না।" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." +-msgstr " ক্ষতিগ্রস্থ মডিউল: %s." ++msgstr " টেন্টেড মডিউল: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE থেকে oops বের করুন (বা স্ট্যান্ডার্ড ইনপুট)" ++msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\noops বের করুন, FILE থেকে (বা স্ট্যান্ডার্ড ইনপুট)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "প্রমিত আউটপুটের মধ্যে print দ্বারা oops-র সম্মুখীন হওয়া গিয়েছে" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "পাওয়া প্রত্যেক oops'র জন্য DIR তে নতুন প্রবলেম ডিরেক্টরি তৈরি করুন" ++msgstr "প্রত্যেক খুঁজে পাওয়া oops এর জন্য DIR এ একটি নতুন সমস্যা ডিরেক্টরি তৈরি করুন" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা হয়" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +-msgstr "বের করে অানা তথ্য PROBLEM এ সংরক্ষণ করুন" ++msgstr "বের করে নিয়ে অাসা তথ্য PROBLEM এ সংরক্ষণ করুন" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, সেকেন্ড প্রতি 1" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "অনুসন্ধানের পংক্তিগুলি stdout-এ প্রদর্শন করে প্রস্থান করা হবে" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" + + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" +@@ -853,7 +866,7 @@ msgstr "বিপর্যয় সম্বন্ধে প্রাপ্ত + + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ প্রবলেম ডিরেক্টরি তৈরি করুন" ++msgstr "খুঁজে পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ সমস্যা ডিরেক্টরি তৈরি করুন" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" +@@ -863,12 +876,11 @@ msgstr "বিপর্যয়ের পরিমাণ অত্যন্ত + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "এখানে অস্থায়ী ফাইল তৈরি করা সম্ভব নয়" ++msgstr "এ অস্থায়ী ফাইল তৈরি করা যায় না" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -905,7 +917,7 @@ msgstr "সার্ভার থেকে প্রাপ্ত উত্তর + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Retrace সার্ভার '%s.%s'. প্যাকেজ প্রক্রিয়া করতে পারছে না\nএটি কি সরকারি '%s' সংগ্রস্থলের অংশ?" ++msgstr "'%s.%s' প্যাকেজ প্রক্রিয়া করতে রিট্রেস সার্ভার অসমর্থ।\nএটি কি সরকারি '%s' সংগ্রহস্থলগুলির একটি অংশ?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1096,7 +1108,7 @@ msgstr "poll সংক্রান্ত কাজে বিলম্ব" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(debug)-র মধ্যে ডাম্প ডিরেক্টরি থেকে নির্মিত অস্থায়ী আর্কাইভ মুছে ফেলা হবে না" ++msgstr "(debug) -র মধ্যে ডাম্প ডিরেক্টরি থেকে নির্মিত অস্থায়ী আর্কাইভ মুছে ফেলা হবে না" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1114,7 +1126,7 @@ msgstr "সার্ভারের মধ্যে চলমান আপনা + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [options]\nকাজ: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1212,16 +1224,16 @@ msgstr "~/.xsession-errors ফাইলের মধ্যে অনুসন্ + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +-msgstr "সার্ভারের দিক থেকে কোনো সমস্যা দেখা দিয়েছে।" ++msgstr "সার্ভারের দিক থেকে একটি সমস্যা হয়েছে।" + + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "'%s' এ সার্ভারের দিক থেকে কোনো সমস্যা দেখা দিয়েছে" ++msgstr "'%s' এ সার্ভারের দিক থেকে একটি সমস্যা হয়েছে" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +-msgstr "সার্ভারের সংগে সংযোগের সময়ে কোনো সমস্যা দেখা দিয়েছে" ++msgstr "সার্ভারের সংগে সংযোগের সময়ে একটি সমস্যা দেখা দিয়েছে" + + #: ../src/plugins/https-utils.c:77 + #, c-format +@@ -1265,13 +1277,13 @@ msgstr "'PEM Token #0' স্লট প্রাপ্ত করতে ব্য + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "হোস্ট নাম '%s' সমাধান করা যায় না। NSS ত্রুটি %d‌।" ++msgstr "'%s' হোস্ট নাম সমাধান করা যায় না। NSS ত্রুটি %d।" + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "হোস্ট নাম '%s' সমাধান করা যায় না।" ++msgstr "'%s' হোস্ট নাম সমাধান করা যায় না।" + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +@@ -1281,64 +1293,71 @@ msgstr "সকেট ব্লক করার মোড নির্ধার + msgid "Failed to wrap TCP socket by SSL." + msgstr "SSL সহযোগে TCP সকেট র‍্যাপ করতে ব্যর্থ" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "SSL সকেটের সাথে ক্লায়েন্ট হ্যান্ড-শেক সক্রিয় করতে ব্যর্থ" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "SSL3 সক্রিয় করতে ব্যর্থ" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "TLS সক্রিয় করতে ব্যর্থ" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "SSL সকেটের URL নির্ধারণ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "'%s' এর সংগে সংযোগ করা সম্ভব নয়" ++msgstr "'%s' এ অ্যাক্সেস করা যায় না" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "সার্টিফিকেট হুক প্রাপ্ত করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "হ্যান্ড-শেক কল-ব্যাক নির্ধারণ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "হ্যান্ড-শেল পুনরায় নির্ধারণ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "SSL হ্যান্ডশেক সম্পন্ন করা গেল না: NSS ত্রুটি %d।" ++msgstr "SSL হ্যান্ডশেক সম্পূর্ণ করা যায়নি: NSS ত্রুটি %d।" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL সকেট বন্ধ করতে ব্যর্থ।" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "ত্রুটিপূর্ণ HTTP প্রত্যুত্তর হেডার: '%s'" ++msgstr "ভুল ভাবে গঠিত HTTP প্রত্যুত্তর হেডার: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "তথ্য প্রাপ্ত করতে ব্যর্থ: NSS সংক্রান্ত ত্রুটি %d।" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "ত্রুটিপূর্ণ বিভক্ত উত্তর।" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS আরম্ভ করতে বিফল।" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "নিরাপত্তার মডেল আরম্ভ করতে ব্যর্থ" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS বন্ধ করতে ব্যর্থ।" + +@@ -1386,11 +1405,11 @@ msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nপ্লিট oops বার্তার জন্য ফাইল স্ক্যান করুন। তাদের প্রিন্ট এবং/অথবা মোছা যায় না।" ++msgstr "& [-v] [-od] FILE...\n\nsplit oops বার্তার জন্য ফাইলগুলি স্ক্যান করে। তাদের মুদ্রণ এবং/অথবা মুছুন।" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "প্রিন্ট oopses খুঁজে পেয়েছে" ++msgstr "পাওয়া oopses মুদ্রণ করুন" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +@@ -1399,7 +1418,7 @@ msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগু + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" + + #: ../src/cli/abrt-cli.c:142 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +@@ -1423,69 +1442,69 @@ msgstr "DIR সম্পর্কে তথ্য প্রিন্ট কর + + #: ../src/cli/abrt-cli.c:150 + msgid "Print the count of the recent crashes" +-msgstr "সাম্প্রতিক ক্যাশের সংখ্যা প্রিন্ট করুন" ++msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" + + #: ../src/cli/abrt-cli.c:165 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "শুধুমাত্র না জানানো সমস্যা তালিকাভুক্ত করুন" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "নির্দিষ্ট সময়সীমার নিরিখের পরিবর্তে শুধুমাত্র অতিসাম্প্রতিক সমস্যাগুলি তালিকাভুক্ত করুন" ++msgstr "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "নির্দিষ্ট সময়সীমার নিরিখে শুধুমাত্র পুরনো সমস্যাগুলি তালিকাভুক্ত করুন" ++msgstr "উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "স্বয়ংক্রিয় ভাবে জানানোর সুবিধা নিষ্ক্রিয় করা অাছে। দয়া করে রুটের বিশেষাধিকার থাকা ব্যবহারকারী সমেত\n'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "এর থেকে বড় পাঠ্য সংক্ষিপ্ত করে দেখানো হবে" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "কোনো '%s' সমস্যা ডিরেক্টরি নেই" + + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." +-msgstr "& পরিসংখ্যান [DIR]..." ++msgstr "& স্ট্যাটাস [DIR]..." + + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" +-msgstr "কোনো বার্তা ছাড়াই শুধু সমস্যার সংখ্যা প্রিন্ট করুন" ++msgstr "কোনো বার্তা ছাড়া শুধুমাত্র সমস্যা গণনা মুদ্রণ করুন" + + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "নির্দিষ্ট সময়সীমার নিরিখের পরিবর্তে শুধুমাত্র অতিসাম্প্রতিক সমস্যাগুলি প্রিন্ট করুন" ++msgstr "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ করুন" + + #: ../src/cli/status.c:104 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +-msgstr "ABRT %u টি সমস্যা নির্ধারণ করেছে। বিস্তারিত জানতে, চালান: abrt-cli list%s⏎\n" ++msgstr "ABRT %u সমস্য সনাক্ত করেছে। অারো তথ্যের জন্য চালনা করুন: abrt-cli list%s\n" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/bo.po b/po/bo.po +index ee59190..d591209 100644 +--- a/po/bo.po ++++ b/po/bo.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora/language/bo/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/br.po b/po/br.po +index b6a5992..fa7fb35 100644 +--- a/po/br.po ++++ b/po/br.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Breton (http://www.transifex.com/projects/p/fedora/language/br/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/brx.po b/po/brx.po +index 7156184..96e1f0f 100644 +--- a/po/brx.po ++++ b/po/brx.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bodo (http://www.transifex.com/projects/p/fedora/language/brx/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/bs.po b/po/bs.po +index ad4b8d2..080cd5d 100644 +--- a/po/bs.po ++++ b/po/bs.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora/language/bs/)\n" + "MIME-Version: 1.0\n" +@@ -27,177 +27,188 @@ msgstr "Automatski alat za izvještaj greški" + msgid "ABRT notification applet" + msgstr "ABRT obavještajni aplet" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Upozorenje" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Obavještajni aplet koji obavještava korisnike o problemima otkrivenim od strane ABRT-a" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Arnes Arnautović " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Sakrij" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Izvještaj" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Dogodio se je problem" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -232,8 +243,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Zapiši u syslog" +@@ -335,12 +346,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -352,15 +363,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -407,12 +418,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -420,7 +431,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -436,7 +447,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -505,6 +515,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -522,7 +538,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -765,73 +780,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Ispiši pronađene oopse na standardnom izlazu" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -859,7 +873,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1277,64 +1290,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1425,43 +1445,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/ca.po b/po/ca.po +index 031b5fc..aa85eca 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Catalan (http://www.transifex.com/projects/p/fedora/language/ca/)\n" + "MIME-Version: 1.0\n" +@@ -27,177 +27,188 @@ msgstr "Eina d'enviament automàtic d'informes d'errors" + msgid "ABRT notification applet" + msgstr "Mini-aplicació de notificacions d'ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "No es pot executar «%s»" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Avís" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Mini-aplicació de l'àrea de notificació que notifica als usuaris sobre els problemes detectats per ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Robert Antoni Buj Gelonch " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Oculta" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Informa" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "S'ha Produït un Problema" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -232,8 +243,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Enregistra a syslog" +@@ -335,12 +346,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -352,15 +363,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -407,12 +418,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -420,7 +431,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -436,7 +447,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -505,6 +515,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -522,7 +538,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -765,73 +780,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -859,7 +873,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1277,64 +1290,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1425,43 +1445,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/cs.po b/po/cs.po +index 5dbe9bd..3117484 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -3,21 +3,17 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Zdenek Chmelar , 2013 + # Jakub Filak , 2012 + # Jakub , 2011 +-# Jan Varta , 2011-2013 +-# Jiří Moskovčák , 2010-2011 + # Milan Kerslager , 2010 + # Milan Kerslager , 2011 +-# Petr Písař , 2010-2011 +-# Petr Písař , 2010-2011 ++# Zdenek Chmelar , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Czech (http://www.transifex.com/projects/p/fedora/language/cs/)\n" + "MIME-Version: 1.0\n" +@@ -34,177 +30,188 @@ msgstr "Nástroj automatického hlášení chyb" + msgid "ABRT notification applet" + msgstr "Upozorňovací applet démonu ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "Report připravený k odeslání neobsahuje žádná citlivá data. Proto není nutné vás příště obtěžovat a požadovat vaši akci.\nPřejete si povolit automatické zasílání anonymních reportů o pádech?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "Nemohu se připojit k NetworkManager přes DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nemohu určit stav sítě pomocí NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Byl zjištěn problém" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Byl zjištěn problém v balíčku %s" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "„%s“ nelze spustit" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nemohu zavřít oznámení: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Upozornění" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Applet upozorňující uživatele na chyby nalezené démonem ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Jiří Moskovčák \nRadek Vokál \nNikola Pajkovsky \nPetr Písař " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Skrýt" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Detekován problém" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Otevřít" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Vyskytl se známý problém" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Nahlásit" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Vyskytl se problém" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Problém byl nahlášen" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Vyskytl se nový problém" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nemohu zobrazit oznámení: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Nemohu číst z kanálu gio: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nemohu nastavit kódování na kanálu gio: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nemohu zapnout neblokový režim pro kanál gio: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nelze převzít vlastnictví '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nemohu otevřít adresář pro zápis '%s'" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nApplet, který uživatele upozorní, když ABRT detekuje nový problém\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -239,8 +246,8 @@ msgstr "& [volby]" + msgid "Use NUM as client uid" + msgstr "Použít NUM jako klient uid" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Protokolovat do syslogu" +@@ -342,12 +349,12 @@ msgstr "Spustí EVENT v DIR" + msgid "Communicate directly to the user" + msgstr "Komunikovat přímo s uživatelem" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -359,15 +366,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -414,12 +421,12 @@ msgstr "Nemohu získat data problému z abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nemohu získat seznam problémů z abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Nemohu vytvořit dočasný soubor '%s'" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -427,7 +434,7 @@ msgid "" + msgstr "Nemohu zapisovat do '%s'. Problém '%s' nebude odstraněn z ignorovaných problémů '%s'" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Nemohu přejmenovat '%s' na '%s'. Selhalo odstranění problému '%s'" +@@ -443,7 +450,6 @@ msgstr "& [volby] -d DIR\n\nAnalyzuje výpis volání, generuje duplikát výbě + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -512,6 +518,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -529,7 +541,6 @@ msgstr "Zabít gdb, jestliže poběží déle než POČET sekund" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -772,73 +783,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nSleduje soubor logů FILE, spust + msgid "Don't run PROG if STRs aren't found" + msgstr "Nespouštějte PROG pokud STRs nejsou nalezeny" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Vyskytl se problém s jádrem, ale vaše jádro bylo modifikováno (parametry:%s). Správci jádra nejsou schopni diagnostikovat modifikované reporty." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Závadné moduly: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Nalezené stížnosti vypíše na standardní výstup" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Vytvoř nový adresář problému v DIR pro každý nalezený oops" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Stejné jako -d DumpLocation, DumpLocation je specifikováno v abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Učiň adresář problému přístupný pro čtení všem" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Vytiskne znak(y) vyhledávání do stdout a ukončí se" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -866,7 +876,6 @@ msgstr "Stopovací server nemůže být využit, protože je záznam příliš v + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1284,64 +1293,71 @@ msgstr "Nepodařilo se přepnout socket do blokujícího modu." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Nepodařilo se vytvořit SSL vrstvu nad TCP socketem." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Selhalo povolení handshake pro SSL soket." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Selhalo nastavení URL pro SSL soket." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Nemohu se připojit k '%s'" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Selhalo propojení certifikátu." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Selhalo nastavení callbacku pro handshake." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Selhal reset handshake." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Selhalo dokončení SSL handshake: NSS chyba %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Selhalo uzavření SSL soketu." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Chybná hlavička HTTP odpovědi: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Selhalo přijetí dat: NSS chyba %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Chybná bloková odpověď." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Chyba při inicializaci NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Chyba inicializace bezpečnostního modulu." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Selhalo ukončení NSS." + +@@ -1432,43 +1448,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Více informací získáte příkazem „abrt-cli PŘÍKAZ --help“" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [volby] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Zbrazit detailní zprávu" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [volby] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/cs_CZ.po b/po/cs_CZ.po +index 8dca482..12909e8 100644 +--- a/po/cs_CZ.po ++++ b/po/cs_CZ.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/fedora/language/cs_CZ/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/cy.po b/po/cy.po +index d3749c9..26089c8 100644 +--- a/po/cy.po ++++ b/po/cy.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Welsh (http://www.transifex.com/projects/p/fedora/language/cy/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/da.po b/po/da.po +index 304a06e..cc961ba 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -4,13 +4,12 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# Kris Thomsen , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Danish (http://www.transifex.com/projects/p/fedora/language/da/)\n" + "MIME-Version: 1.0\n" +@@ -27,177 +26,188 @@ msgstr "Automatisk værktøj til fejlrapportering" + msgid "ABRT notification applet" + msgstr "Notificeringspanelprogram for ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Et problem er blevet opdaget" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Et problem i pakken %s er blevet opdaget" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Kan ikke udføre \"%s\"" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Advarsel" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Notificeringspanelprogram som giver brugere besked om problemer opdaget af ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Kris Thomsen\n\nDansk-gruppen \nMere info: http://www.dansk-gruppen.dk" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Skjul" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Problem opdaget" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Rapportér" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Et problem er opstået" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke tage ejerskab over \"%s\"" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [MAPPE]...\n\nPanelprogram som giver brugeren besked, når nye problemet er fundet af ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -232,8 +242,8 @@ msgstr "& [tilvalg]" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Skriv til syslog" +@@ -335,12 +345,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -352,15 +362,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -407,12 +417,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -420,7 +430,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -436,7 +446,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -505,6 +514,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -522,7 +537,6 @@ msgstr "Dræb gdb hvis det kører mere end NUM sekunder" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -765,73 +779,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Udskrift fandt oops'er i standardoutput" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Samme som -d DumpLocation, DumpLocation er angivet i abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -859,7 +872,6 @@ msgstr "Sporingsserveren kan ikke bruges fordi nedbruddet er for stort. Prøv lo + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1277,64 +1289,71 @@ msgstr "Kunne ikke angive sokkelblokeringstilstand." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Kunne ikke wrappe TCP-sikkel efter SSL." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Kunne ikke aktivere klienthandshake til SSL-sokkel." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Kunne ikke angive URL til SSL-sokkel." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Kunne ikke angive certifikatkrog." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Kunne ikke angive handshake-tilbagekald." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Kunne ikke nulstille handshake." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Kunne ikke lukke SSL-sokkel." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Hentning af data mislykkedes: NSS-fejl %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Kunne ikke initialisere NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Kunne ikke initialisere sikkerhedsmodul." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Kunne ikke nedlukke NSS." + +@@ -1425,43 +1444,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se \"abrt-cli COMMAND --help\" for mere information" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Vis detaljeret rapport" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/de.po b/po/de.po +index 5ff05aa..5b631fb 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -6,21 +6,20 @@ + # Fabian Affolter , 2011 + # Gerd Koenig , 2011 + # hpeters , 2013 +-# hpeters , 2011-2012 ++# hpeters , 2014 + # Jiří Moskovčák , 2011 + # Laurin , 2011 + # Mario Blättermann , 2011 +-# Rainer , 2013 +-# Roman Spirgi , 2012-2013 +-# Roman Spirgi , 2011, 2012 + # noxin , 2013 ++# Rainer , 2013 ++# Roman Spirgi , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 22:39+0000\n" ++"Last-Translator: hpeters \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora/language/de/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -36,177 +35,188 @@ msgstr "Automatisierte Fehlerberichterstattung" + msgid "ABRT notification applet" + msgstr "ABRT-Benachrichtigungs-Applet" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "Der Bericht, der gesendet wird, enthält keine sicherheitsrelevanten Daten. Deshalb kann dieser Vorgang zukünftig automatisiert werden, ohne dass Sie dies jedes Mal bestätigen müssen.\nMöchten Sie die automatische Übermittlung von anonymen Absturzberichten aktivieren?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "Der Bericht, der gesendet wird, enthält keine sicherheitsrelevanten Daten. Deshalb kann dieser Vorgang zukünftig automatisiert werden, ohne dass Sie dies jedes Mal bestätigen müssen.\n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "Möchten Sie die automatische Übermittlung von Absturzberichten aktivieren?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "Möchten Sie die automatische Übermittlung von anonymen Absturzberichten aktivieren?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "Keine Verbindung mit NetworkManager über DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Netzwerkstatus kann über NetworkManager nicht bestimmt werden: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Es wurde ein Absturz entdeckt" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "In Paket %s wurde ein Absturz entdeckt" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s und die Diagnostikdaten wurden übertragen" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "»%s« kann nicht ausgeführt werden" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "Benachrichtigung kann nicht geschlossen werden: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Warnung" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Info-Applet, das Benutzer über die von ABRT entdeckten Probleme benachrichtigt" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Mario Blättermann\nFabian Affolter\nRoman Spirgi" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Quit" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Ausblenden" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_About" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Fehler festgestellt" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Für immer ignorieren" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Öffnen" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "Dieser Fehler wurde bereits gemeldet" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Ein bekannter Fehler ist aufgetreten" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Melden" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Ein Fehler ist aufgetreten" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Ein Fehler wurde gemeldet" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Ein neues Problem ist aufgetreten" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Benachrichtigung kann nicht angezeigt werden: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Von gio channel kann nicht gelesen werden: »%s«" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Verschlüsselung kann auf gio channel nicht gesetzt werden: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nichtblockier-Modus kann für gio channel nicht gesetzt werden: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Eigentumsrechte von »%s« können nicht geändert werden." + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Es konnte keine Verbindung mit dem Sitzungsmanager aufgebaut werden: '%s', eine Benachrichtigung wird beim nächsten anmelden angezeigt" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nApplet zur Benachrichtigung des Benutzers, wenn neue Abstürze durch ABRT entdeckt werden\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "_Schließen" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "_Defaults" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Einstellung für die Problemmeldung" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Über das ABRT Konfigurationssystem " + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Über" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Beenden" + +@@ -241,8 +251,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "NUM als Client-UID benutzen" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "In Systemprotokoll speichern" +@@ -344,12 +354,12 @@ msgstr "EVENT auf DIR ausführen" + msgid "Communicate directly to the user" + msgstr "Direkt mit dem Benutzer kommunizieren" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "Kein freier Dienst vorhanden und Puffer voll. Archiv »%s« wird ausgelassen" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -361,30 +371,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nBeobachtet das Verzeichnis UPLOAD_DIRECTORY und entpackt eingehende Archive in den Ordner DumpLocation\nwelcher in abrt.conf festgelegt wird.\n\nSollte UPLOAD_DIRECTORY nicht spezifiziert worden sein, wird eine Ordner aus\nWatchCrashdumpArchiveDir festgelegt in abrt.conf ausgewählt." + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Als Dienst ausführen" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Anzahl der gleichzeitig laufenden Dienste. Standard ist " + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale Cache-Größe in MB. Standard ist " + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Ungültige Parameteranzahl" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Unbekannter Optionswert: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -416,12 +426,12 @@ msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Fehler-Liste kann von abrt-dbus nicht abgerufen werden: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr " Temporäre Datei »%s« konnte nicht erstellt werden" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +439,7 @@ msgid "" + msgstr "Auf »%s« konnte nicht geschrieben werden. Fehlerbericht »%s« wird nicht aus den ignorierten Fehlerberichten »%s« entfernt" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Umbenennen von »%s« zu »%s« nicht möglich. Fehlerbericht »%s« konnte nicht entfernt werden." +@@ -445,7 +455,6 @@ msgstr "\\b [options] -d DIR\n\nAnalysiert C/C++-Ablaufverfolgung, generiert Dup + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -514,6 +523,12 @@ msgstr "Oops-Meldung kann nicht ausgelesen werden: »{0}«" + msgid "Oops text extracted successfully" + msgstr "Oops-Text erfolgreich ausgelesen" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "Das Kernel-Protokoll weist darauf hin, dass Hardware-Fehler entdeckt wurden.\nHöchstwahrscheinlich handelt es sich dabei nicht um ein Software-Problem.\n\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -531,7 +546,6 @@ msgstr "GDB beenden, wenn es länger als NUM Sekunden läuft" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -586,7 +600,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "Verwendung: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nInstalliert Debuginfos für alle Build-IDs, die in BUILD_IDS_FILE auf\nCACHEDIR gelistet sind, unter Verwendung von TMPDIR als temporäre\nBereitstellungszone. Ältere Dateien in CACHEDIR werden gelöscht, bis\ndie Größe weniger als SIZE beträgt.\n\n -v Details anzeigen\n -y Nicht interaktiv, »Ja« auf alle Fragen anwenden\n --ids Standard: build_ids\n --tmpdir Standard: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache Standard: /var/cache/abrt-di\n --size_mb Standard: 4096\n -e,--exact Nur spezifische Dateien herunterladen\n --repo Muster zum Suchen nach Repositorys.\n Standard: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -598,11 +612,11 @@ msgstr "Speicherauszug referenziert {0} Debuginfo-Dateien, {1} davon sind nicht + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} der Debuginfo-Dateien sind nicht installiert" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Angeforderte Datei fehlt: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -774,73 +788,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nLog-Datei FILE anschauen, PROG a + msgid "Don't run PROG if STRs aren't found" + msgstr "PROG nicht ausführen, wenn keine STRs gefunden wurden" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "Ein Kernel-Problem ist aufgetreten aufgrund eines beschädigten BIOS. Leider können derartige Probleme nicht von Kernel-Maintainern behoben werden." + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "Ein Kernel-Problem ist aufgetreten, aber Ihre Hardware wird nicht unterstützt, weshalb Kernel-Maintainer dieses Problem nicht beheben können." + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Es ist ein Kernel-Problem aufgetreten, aber Ihr Kernel ist defekt (flags:%s). Kernel-Maintainer können keine Berichte beschädigter Kernel analysieren." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Betroffene Module: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nOops aus FILE extrahieren (oder Standard-Eingabe)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Gefundene Kernel-Abstürze auf der Standardausgabe ausgeben" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Neues Fehlerverzeichnis in DIR erstellen für jede gefundene Kernelabsturz-Meldung" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Entspricht -d DumpLocation, DumpLocation ist in abrt.conf spezifiziert" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Speichern Sie die extrahierten Informationen in PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Fehler-Verzeichnis allgemein lesbar machen" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Erstellung eines Fehlerverzeichnisses auf 1 pro Sekunde beschränken" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "Fehler kann nicht aktualisiert werden: mehrere Oops gefunden" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d Sekunden warten" +@@ -868,7 +881,6 @@ msgstr "Retrace-Server kann nicht verwendet werden, da der Absturz zu umfangreic + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1286,64 +1298,71 @@ msgstr "Blockiermodus des Sockets konnte nicht gesetzt werden." + msgid "Failed to wrap TCP socket by SSL." + msgstr "TCP-Socket konnte nicht durch SSL getunnelt werden." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Client-Handshake mit SSL-Socket konnte nicht aktiviert werden." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "SSL3 konnte nicht aktiviert werden." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "TLS konnte nicht aktiviert werden." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Adresse konnte nicht auf SSL-Socket gesetzt werden." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Verbindung mit '%s' nicht möglich" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Zertifikats-Hook konnte nicht eingestellt werden." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Handshake-Callback konnte nicht eingestellt werden." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Handshake konnte nicht zurückgesetzt werden." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "SSL-Handshake fehlgeschlagen: NSS-Fehler %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL-Socket konnte nicht geschlossen werden." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Fehlerhafter HTTP-Antwortheader: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Empfang der Daten ist gescheitert: NSS-Fehler %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Fehlerhafte unvollständige Antwort." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS konnte nicht initialisiert werden." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Sicherheitsmodul konnte nicht initialisiert werden." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS konnte nicht heruntergefahren werden." + +@@ -1434,43 +1453,43 @@ msgstr "Anzahl der jüngsten Abstürze ausgeben" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [Optionen] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Nur noch nicht berichtete Probleme anzeigen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Detaillierten Bericht anzeigen" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Nur die Probleme anzeigen, welcher vor dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "Die automatische Berichtsfunktion ist deaktiviert. Bitte ziehen Sie in Betracht, sie\nzu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [Optionen] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "Längere Texte werden gekürzt angezeigt" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Kein solches Fehlerverzeichnis »%s« vorhanden" +diff --git a/po/de_CH.po b/po/de_CH.po +index 458c24b..5e78be5 100644 +--- a/po/de_CH.po ++++ b/po/de_CH.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora/language/de_CH/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/dz.po b/po/dz.po +index 254d725..f4c21be 100644 +--- a/po/dz.po ++++ b/po/dz.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora/language/dz/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/el.po b/po/el.po +index ad40343..7a0bc30 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -11,8 +11,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Greek (http://www.transifex.com/projects/p/fedora/language/el/)\n" + "MIME-Version: 1.0\n" +@@ -29,177 +29,188 @@ msgstr "Εργαλείο αυτόματης αναφοράς σφαλμάτων" + msgid "ABRT notification applet" + msgstr "Μικροεφαρμογή ειδοποίησης ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Το '%s' δεν μπορεί να εκτελεστεί" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Προειδοποίηση" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Μικρο εφαρμογή η οποία ειδοποιηεί το χρήστη για κατάρευση εντοπίστηκε από το ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "πόντοι -επιβράβευσης-μεταφραστή" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Απόκρυψη" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Ανοιγμα" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Αναφορά" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Ένα πρόβλημα προέκυψε" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -234,8 +245,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Καταγραφή στο syslog" +@@ -337,12 +348,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -354,15 +365,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -409,12 +420,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -422,7 +433,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -438,7 +449,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -507,6 +517,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -524,7 +540,6 @@ msgstr "Σκότωσε το gdb αν τρέχει για περισσότερο + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -767,73 +782,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Η εκτύπωση βρήκε \"ουπς\" στην κανονική επιστροφή. " + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -861,7 +875,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1279,64 +1292,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1427,43 +1447,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/en_GB.po b/po/en_GB.po +index 0af7562..9cfce53 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -3,7 +3,6 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Bruce Cowan , 2011-2012 + # Bruce Cowan , 2011 + # Jiří Moskovčák , 2011 + # readmanr , 2013 +@@ -12,8 +11,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora/language/en_GB/)\n" + "MIME-Version: 1.0\n" +@@ -30,177 +29,188 @@ msgstr "Automatic Bug Reporting Tool" + msgid "ABRT notification applet" + msgstr "ABRT notification applet" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \nDo you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "Can't connect to NetworkManager over DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Can't determine network status via NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "A problem has been detected" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "A problem in the %s package has been detected" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Can't execute '%s'" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "Can't close notification: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Warning" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Notification area applet that notifies users about issues detected by ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Bruce Cowan " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Hide" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Problem detected" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Open" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "A Known Problem has Occurred" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Report" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "A Problem has Occurred" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "A New Problem has Occurred" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Can't show notification: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Can't read from gio channel: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Can't set encoding on gio channel: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Can't turn on nonblocking mode for gio channel: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Can't take ownership of '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Can't open directory for writing '%s'" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nApplet which notifies user when new problems are detected by ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -235,8 +245,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "Use NUM as client uid" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Log to syslog" +@@ -338,12 +348,12 @@ msgstr "Run EVENT on DIR" + msgid "Communicate directly to the user" + msgstr "Communicate directly to the user" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -355,15 +365,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -410,12 +420,12 @@ msgstr "Can't get problem data from abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Can't get problem list from abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -423,7 +433,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -439,7 +449,6 @@ msgstr "& [options] -d DIR\n\nAnalyses C/C++ backtrace, generates duplication ha + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -508,6 +517,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -525,7 +540,6 @@ msgstr "Kill gdb if it runs for more than NUM seconds" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -768,73 +782,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nWatch log file FILE, run PROG wh + msgid "Don't run PROG if STRs aren't found" + msgstr "Don't run PROG if STRs aren't found" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "A kernel problem occurred, but your kernel has been tainted (flags:%s). Kernel maintainers are unable to diagnose tainted reports." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr " Tainted modules: %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Print found oopses on standard output" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Make the problem directory world readable" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Print search string(s) to stdout and exit" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -862,7 +875,6 @@ msgstr "Retrace server can not be used, because the crash is too large. Try loca + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1280,64 +1292,71 @@ msgstr "Failed to set socket blocking mode." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Failed to wrap TCP socket by SSL." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Failed to enable client handshake to SSL socket." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Failed to set URL to SSL socket." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Failed to set certificate hook." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Failed to set handshake callback." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Failed to reset handshake." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Failed to close SSL socket." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Receiving of data failed: NSS error %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Malformed chunked response." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Failed to initialise NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Failed to initialise security module." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Failed to shutdown NSS." + +@@ -1428,43 +1447,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "See 'abrt-cli COMMAND --help' for more information" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Show detailed report" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/en_US.po b/po/en_US.po +index c06f6af..a8589a4 100644 +--- a/po/en_US.po ++++ b/po/en_US.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: English (United States) (http://www.transifex.com/projects/p/fedora/language/en_US/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/eo.po b/po/eo.po +index f381f80..e6a20f9 100644 +--- a/po/eo.po ++++ b/po/eo.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Esperanto (http://www.transifex.com/projects/p/fedora/language/eo/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/es.po b/po/es.po +index 0dcb546..b338333 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -6,30 +6,23 @@ + # Adolfo Jayme Barrientos , 2013 + # alex_pe , 2013 + # Andrei Garza , 2012 +-# Domingo Becker , 2011 + # chris.rico , 2013 +-# Claudio Rodrigo Pereyra Diaz , 2011-2013 +-# Dennis Tobar , 2011-2012 +-# Domingo Becker , 2013 +-# Domingo Becker , 2011-2012 +-# Eduardo Villagrán M , 2013 +-# vareli , 2013 +-# vareli , 2013 +-# Gladys Guerrero , 2011-2012 +-# Gladys Guerrero , 2012-2013 + # Daniel Cabrera , 2011 +-# イスラエル Torres Cázares , 2013 +-# Javier Galnares Arias , 2012-2013 ++# Domingo Becker , 2011,2013 ++# Eduardo Villagrán M , 2013 ++# Gladys Guerrero , 2014 + # Jiří Moskovčák , 2011 + # Jorge González , 2011 + # Luis Bazán , 2011 ++# イスラエル Torres Cázares , 2013 ++# vareli , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-13 05:35+0000\n" ++"Last-Translator: Gladys Guerrero \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora/language/es/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -45,177 +38,188 @@ msgstr "Herramienta automática de informes de errores" + msgid "ABRT notification applet" + msgstr "Miniaplicación de notificación de ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "El informe que será enviado no contiene ningún dato sensible de seguridad. Por lo tanto no es necesario molestarle la próxima vez y requerir acciones posteriores por su parte. ¿Desea habilitar el envío automático de reportes de crash anonimos?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "El informe que ha enviado no contiene ninguna información confidencial de seguridad. Por lo tanto, se requerirá ninguna otra acción de su parte.\n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "¿Desea activar automáticamente el envío de reporte de fallos? " ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "¿Desea enviar activar automáticamente los reportes de fallos de forma anónima? " + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "No puedo conectar a NetworkManager sobre DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "No puedo determinar el estado de la red por medio de NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Se ha detectado un problema" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Se ha detectado un problema en el paquete %s" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s y los datos de diagnóstico han sido enviados" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "No se puede ejecutar «%s»" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "No puedo cerrar notificación: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "La miniaplicación del área de notificaciones informa al usuario los problemas detectados por ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "traductores: Claudio Rodrigo Pereyra Diaz , Domingo Becker , Héctor Daniel Cabrera , Dennis Tobar ." + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Salir" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Ocultar" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_Acerca de" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Problema detectado" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Ignorar siempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Abierto" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "El problema fue reportado anteriormente" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Ha ocurrido un problema conocido" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Informar" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Ocurrió un problema" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Un problema ha sido reportado." + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Ha ocurrido un problema nuevo" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "No puedo mostrar notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "No puedo leer desde canal gio: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "No puedo fijar codificación sobre canal gio: %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "No puedo volver al modo de no bloqueo para el canal gio: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "No puedo hacerme dueño de '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "No puedo abrir directorio para escribir '%s'" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Hubo un error al abrir la conexión al administrador de sesión: '%s', la notificación puede aparecer en el siguiente inicio de sesión" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nMini aplicación que notifica al usuario cuando ABRT detecta nuevos problemas\n\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "_Cerrar" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "Configuraciones _por defecto" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Configuración de Reporte de Problemas" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Acerca de System Config ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Acerca de" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Salir" + +@@ -250,8 +254,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "Utilice NUM como uid del cliente" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Registrarse en syslog" +@@ -353,12 +357,12 @@ msgstr "Ejecuta EVENTO en DIR" + msgid "Communicate directly to the user" + msgstr "Comuncar directamente al usuario" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "No hay trabajadores libres y memoria llena. archivo Omitiendo '%s'" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -370,30 +374,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nObserva el UPLOAD_DIRECTORY y descomprime los archivos dentro de la ubicación especificada en el archivo abrt.conf\n\nSi el UPLOAD_DIRECTORY no es entregado, usa el valor de la opción\nWatchCrashdumpArchiveDir del archivo abrt.conf" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Daemize" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Numero de trabajadores concurrentes. El valor por defecto es" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Tamaño máximo de la caché en MB. Por defecto es" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Número de argumentos no es válido" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Valor de opción desconocido: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -425,12 +429,12 @@ msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "No se pudo obtener la lista de problemas desde abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "No puede crear fichero temporal ‘%s’" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -438,7 +442,7 @@ msgid "" + msgstr "No puede escribir en ‘%s’. Problema ‘%s’ no será quitado de los problemas ignorados ‘%s’" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "No puede renombrar ‘%s’ a ‘%s’. Fallado al quitar problema ‘%s’" +@@ -454,7 +458,6 @@ msgstr "& [options] -d DIR\n\nAnaliza el trazado de C/C++, genera duplicación + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -523,6 +526,12 @@ msgstr "No puedo extraer el mensaje ups:'{0}'" + msgid "Oops text extracted successfully" + msgstr "EL texto ups a sido extraído efectivamente " + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "El registro del kernel indica que se han detectado errores de hardware.\nEs muy probable que no se trate de un problema de software.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -540,7 +549,6 @@ msgstr "Termina gdb si está ejecutándose más de NUM segundos" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -595,7 +603,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "Uso: %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nInstala debuginfos para todos los build-ids listados en BUILD_IDS_FILE\npara CACHEDIR, mediante TMPDIR como una etapa provisional.\nLos archivos viejos en CACHEDIR son eliminados hasta que sean menor que SIZE.\n\n -v Ser verboso\n -y Nointeractivo, asume 'Sí' a todas las preguntas\n --ids Predeterminado: build_ids\n --tmpdir Predeterminado: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache Predeterminado: /var/cache/abrt-di\n --size_mb Predeterminado: 4096\n -e,--exact Descarga únicamente los archivos especificados\n --repo Patrón a usar al buscar repositorios.\n Predeterminado: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -607,11 +615,11 @@ msgstr "Volcado de memoria hace referencia a {0} archivos de información de dup + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} de archivos debuginfo no se han instalado" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Falta el archivo solicitado: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -783,73 +791,72 @@ msgstr "& [-vs] [-F CADENA]... ARCHIVO PROG [ARGS]\n\nSe fija en el ARCHIVO log, + msgid "Don't run PROG if STRs aren't found" + msgstr "No ejecuta el PROG si no encuentra la CADENA" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "Ha ocurrido un problema de kernel de BIOS incorrecto. Infortunadamente, los mantenedores del kernel no pueden corregir estos problemas." + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "Ha ocurrido un problema de kernel, pero su hardware no tiene soporte, por lo tanto los mantenedores del kernel no pueden corregir este problema." + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Ocurrió un problema en el kernel, pero su kernel ha sido corrompido (flag:%s). Los mantenedores no pueden diagnosticar reportes de kernel corruptos." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Módulos manchados: %s" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "& [-vusoxm] [-d DIR]/[-D] [ARCH]\n\nExtrae los oops desde el ARCH (o la entrada estándar)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Muestra los oops hallados en la salida estándar" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Creado un nuevo directorio de problemas en DIR para cada ups encontrado" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Igual que -d DumpLocation, lugar de volcado se especifica en abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Guardar la información extraída en PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Hacer que el directorio de problemas sea legible para todos" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Acelerando creación de directorio de problema a 1 por segundo" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "No se pudo actualizar el problema: se encontraron mas de un oops" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Durmiendo por %d segundos" +@@ -877,7 +884,6 @@ msgstr "El servidor de trazado de los pasos no se puede utilizar, debido a que e + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1295,64 +1301,71 @@ msgstr "Error al establecer el modo de bloqueos de socket." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Error de ajuste del socket TCP por SSL." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Error al habilitar protocolo de enlace de cliente para socket SSL." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "No se pudo habilitar SSL3." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "No se pudo habilitar TLS." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Error al establecer URL para socket SSL" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "No se pudo conectar a '%s'." + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Error al establecer enlace de certificado." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Error al establecer protocolo de enlace de llamada." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Error al restablecer protocolo de enlace." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "No se pudo completar el Protocolo de enlace: error NSS %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Error al cerrar socket SSL." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Encabezamiento de respuesta HTTP malforado: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "La recepción de datos falló: error NSS %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Respuesta a pedazos mal formada" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Error al iniciar NSS" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Error al iniciar el módulo de seguridad." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Error al apagar NSS." + +@@ -1443,43 +1456,43 @@ msgstr "Imprima el conteo de las fallas recientes" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Lista únicamente los problemas no reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Muestre el reporte detallado" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Listar sólo los problemas más recientes que la marca de tiempo especificada" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Listar sólo los problemas más viejos que la marca de tiempo especificada" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "La funcionalidad de autoreporte está inhabilitada. Por favor considere habilitarla al emitir \n'abrt-auto-reporting enabled' como usuario con privilegios de root.\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "Los textos de mayor longitud que éste se mostrarán abreviados" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "No se encontró el directorio '%s' del problema" +diff --git a/po/es_ES.po b/po/es_ES.po +index 99e99b0..f8609fd 100644 +--- a/po/es_ES.po ++++ b/po/es_ES.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/fedora/language/es_ES/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/et.po b/po/et.po +index 135c313..eb7a2cb 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -3,14 +3,13 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# mihkel , 2011 +-# mihkel , 2012 ++# mihkel , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Estonian (http://www.transifex.com/projects/p/fedora/language/et/)\n" + "MIME-Version: 1.0\n" +@@ -27,177 +26,188 @@ msgstr "Automaatne veateavituse tööriist" + msgid "ABRT notification applet" + msgstr "ABRT märguande aplett" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Probleem on tuvastatud" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Pakis %s on tuvastatud probleem" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "'%s'-i käivitamine nurjus" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Hoiatus" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Märguandeala aplett, mis teavitab kasutajaid ABRT-i poolt tuvastatud probleemidest" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "mihkel " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Peida" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Tuvastati probleem" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Teavita" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Tekkis probleem" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' omandamine nurjus" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [KATALOOG]...\n\nAplett, mis teavitab kasutajat, kui ABRT on tuvastanud uusi probleeme\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -232,8 +242,8 @@ msgstr "& [valikud]" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Logi syslog-i" +@@ -335,12 +345,12 @@ msgstr "Käivita SÜNDMUS KATALOOGIS" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -352,15 +362,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -407,12 +417,12 @@ msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Probleemi nimekirja pärimine üle abrt-dbus'i nurjus: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -420,7 +430,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -436,7 +446,6 @@ msgstr "& [valikud] -d KATALOOG\n\nAnalüüsib C/C++ tagasijälitust, genereerib + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -505,6 +514,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -522,7 +537,6 @@ msgstr "Tapa gdb, kui ta töötab kauem kui NUM sekundit" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -765,73 +779,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Tekkis tuuma probleem, aga sinu masina tuum on ebapuhas (lipud:%s).\nTuuma haldajad ei suuda diagnoosida ebapuhtaid raporteid." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Kirjuta leitud uupsid standardväljundisse" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Sama kui -d DumpLocation, DumpLocation määratakse abrt.conf failis" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Tee probleemide kataloog kõikidele loetavaks" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Trüki otsingustringid stdout-i ja välju" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -859,7 +872,6 @@ msgstr "Taasjälituse serverit ei saa kasutada, kuna krahh on liiga suur. Proovi + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1277,64 +1289,71 @@ msgstr "Sokli blokeerimise režiimi määramine nurjus." + msgid "Failed to wrap TCP socket by SSL." + msgstr "TCP sokli mähkimine SSL-i poolt nurjus." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "SSL sokkli kliendi käepigistuse võimaldamine nurjus." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "URL-i määramine SSL sokklile nurjus" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Sertifikaadi haagi määramine nurjus." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Käepigistuse tagasihelistamise määramine nurjus." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Käepigistuse lähtestamine nurjus." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL sokli sulgemine nurjus." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Andmete vastuvõtmine nurjus: NSS viga %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Vigane kuhjatud vastus." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS-i initsialiseerimine nurjus." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Turvamooduli initsialiseerimine nurjus." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS-i sulgemine nurjus." + +@@ -1425,43 +1444,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [valikud] [KATALOOG]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Kuva detailne raport" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [valikud] KATALOOG..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/eu.po b/po/eu.po +index 191a639..406c99b 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Basque (http://www.transifex.com/projects/p/fedora/language/eu/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "ABRT jakinarazpen appleta" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Ezin da '%s' exekutatu" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Abisua" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Asier Iturralde Sarasola " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Ezkutatu" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Arazo bat gertatu da" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -231,8 +242,8 @@ msgstr "& [aukerak]" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -334,12 +345,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -351,15 +362,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -406,12 +417,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -419,7 +430,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -435,7 +446,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -504,6 +514,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -521,7 +537,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -764,73 +779,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "Ez exekutatu PROG ez bada STRrik aurkitzen" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -858,7 +872,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1276,64 +1289,71 @@ msgstr "Huts egin du socket-aren blokatze-modua ezartzean." + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Huts egin du SSL socket-a ixtean." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Huts egin du NSS hasieratzean." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Huts egin du segurtasun modua hasieratzean." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1424,43 +1444,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/eu_ES.po b/po/eu_ES.po +index e7c3640..c17e4d1 100644 +--- a/po/eu_ES.po ++++ b/po/eu_ES.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/fedora/language/eu_ES/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/fa.po b/po/fa.po +index 3cfe9df..cd6ad42 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -10,8 +10,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Persian (http://www.transifex.com/projects/p/fedora/language/fa/)\n" + "MIME-Version: 1.0\n" +@@ -28,177 +28,188 @@ msgstr "ابزار گزارش اشکال خودکار" + msgid "ABRT notification applet" + msgstr "اپلت آگاه کننده ابزار گزارش اشکال خودکار" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "اخطار" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "برنامه ناحیه اخطار که کاربران را درباره جریانات یافت شده توسط ای‌بی‌ار‌تی یافت شده اند" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "مترجمین" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "پنهان" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "گزارش" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "مشکلی رخ داده است" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -233,8 +244,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "در syslog سیاهه شد" +@@ -336,12 +347,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -353,15 +364,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -408,12 +419,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -421,7 +432,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -437,7 +448,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -506,6 +516,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -523,7 +539,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -766,73 +781,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "چاپ لغزش‌هایی روی خروجی استاندارد یافته" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -860,7 +874,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1278,64 +1291,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1426,43 +1446,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/fa_IR.po b/po/fa_IR.po +index c1fd444..7bde1f9 100644 +--- a/po/fa_IR.po ++++ b/po/fa_IR.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/fedora/language/fa_IR/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -857,7 +871,6 @@ msgstr "" + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1275,64 +1288,71 @@ msgstr "" + msgid "Failed to wrap TCP socket by SSL." + msgstr "" + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "" + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "" + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "" + +@@ -1423,43 +1443,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/fi.po b/po/fi.po +index a8227dd..cbd773f 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -4,16 +4,14 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# Juhani Numminen , 2012-2013 + # Ville-Pekka Vainio , 2011 +-# Ville-Pekka Vainio , 2011-2013 + # Ville Skyttä , 2011 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora/language/fi/)\n" + "MIME-Version: 1.0\n" +@@ -30,177 +28,188 @@ msgstr "Automaattinen ohjelmavikojen raportointiohjelma" + msgid "ABRT notification applet" + msgstr "ABRT-ilmoitussovelma" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "Raportti, joka lähetetään, ei sisällä mitään arkaluonteista dataa. Siksi ei ole tarpeellista häiritä sinua ensi kerralla ja edellyttää sinulta enempää toimia.\nHaluatko sallia automaattisesti lähetettävät anonyymit kaatumisraportit?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Havaittiin ongelma" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Paketissa %s on huomattu kaatuminen" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Ohjelmaa ”%s” ei voida suorittaa" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Varoitus" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Ilmoitusalueen kuvake, joka kertoo käyttäjälle ABRT:n huomaamista ongelmista" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Ville-Pekka Vainio, 2009-2011." + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Piilota" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Ongelma havaittu" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Avaa" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Tapahtui tunnettu ongelma" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Ilmoita" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Tapahtui ongelma" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Ongelma raportoitiin" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Tapahtui uusi ongelma" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [HAK]...\n\nOhjelma, joka huomauttaa käyttäjälle uusista ABRT:n havaitsemista ongelmista\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -235,8 +244,8 @@ msgstr "& [valitsimet]" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Kirjoita lokia syslogiin" +@@ -338,12 +347,12 @@ msgstr "Suorita TAPAHTUMA HAKemistoissa" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -355,15 +364,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -410,12 +419,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -423,7 +432,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -439,7 +448,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -508,6 +516,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -525,7 +539,6 @@ msgstr "Tapa gdb, jos sitä on suoritettu enemmän kuin NUM sekuntia" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -768,73 +781,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Tapahtui ytimen ongelma, mutta järjestelmän ydin on tärvelty (tainted, liput: %s). Ytimen ylläpitäjät eivät pysty tutkimaan tärvellyistä ytimistä tehtyjä raportteja." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Tulosta löydetyt oopsit vakiotulosteeseen" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Sama kuin -d DumpLocation, DumpLocation on määritetty tiedostossa abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Tee ongelmahakemistosta kaikkien luettava" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -862,7 +874,6 @@ msgstr "Uudelleenjäljityspalvelinta ei voida käyttää, koska kaatumistiedot o + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1280,64 +1291,71 @@ msgstr "Pistokkeen synkronisen tilan asettaminen epäonnistui." + msgid "Failed to wrap TCP socket by SSL." + msgstr "TCP-pistokkeen kääriminen SSL:llä epäonnistui." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Asiakaskättelyn käyttöönotto SSL-pistokkeessa epäonnistui." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "SSL-pistokkeen osoitteen asettaminen epäonnistui." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Sertifikaattikoukun asettaminen epäonnistui." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Kättelyn takaisinkutsun asettaminen epäonnistui." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Kättelyn alustaminen epäonnistui." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL-pistokkeen sulkeminen epäonnistui." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Tiedon vastaanottaminen epäonnistui: NSS-virhe %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Väärän muotoinen lohkotettu vastaus" + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS:n alustus epäonnistui." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Turvallisuusmoduulin alustaminen epäonnistui." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS:n sammuttaminen epäonnistui." + +@@ -1428,43 +1446,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [valinnat] [HAK]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Näytä yksityiskohtainen raportti" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [valinnat] HAK..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" +diff --git a/po/fr.po b/po/fr.po +index 79d53ad..02fa6f6 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -3,25 +3,22 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Fil_Rouge , 2011 + # dominique bribanick , 2011,2013 + # Dralyab , 2013 + # erikap, 2013 + # Fil_Rouge , 2011 +-# Dralyab , 2013 +-# Jérôme Fenal , 2012-2013 ++# Jérôme Fenal , 2014 + # Jiří Moskovčák , 2011 +-# Kévin Raymond , 2011-2013 +-# Sam Friedmann , 2011-2013 ++# Sam Friedmann , 2014 + # Vincent HERBER , 2011 + # Vincent , 2011 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:20+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-26 09:54+0000\n" ++"Last-Translator: Jérôme Fenal \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora/language/fr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -37,177 +34,188 @@ msgstr "Automatic Bug Reporting Tool" + msgid "ABRT notification applet" + msgstr "Applet de notification ABRT" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "Le rapport qui sera envoyé ne contient pas de données liées à la sécurité. Ainsi, il ne sera pas nécessaire de vous déranger la prochaine fois, et aucune action ne vous sera demandée.\nSouhaitez-vous activer la soumission automatique de rapports d'incidents anonymes ?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "Le rapport qui sera envoyé ne contient pas de données sensibles d'un point de vue sécurité. Ainsi, il ne sera pas nécessaire de vous déranger la prochaine fois et aucune autre action ne vous sera demandée.\n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "Souhaitez-vous activer la soumission automatique de rapports d'incidents ?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "Souhaitez-vous activer la soumission automatique de rapports d'incidents anonymes ?" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "Impossible de se connecter à NetworkManager via DBus : %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Impossible de déterminer l'état du réseau via NetworkManager : %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Un incident a été détecté" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Un incident a été détecté dans le paquet %s" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s et les données du diagnostique ont été soumis" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "Impossible d'exécuter « %s »" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossible de fermer la notification : %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Avertissement" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Applet de la zone de notification pour informer les utilisateurs des incidents détectés par ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Sam Friedmann , 2009.\nAymeric Rateau , 2009, 2010.\nThomas Canniot , 2010.\nCharles-Antoine Couret , 2010.\nDominique Bribanick , 2011.\nSam Friedmann , 2011." + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Quitter" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Masquer" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "À _propos" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Incident détecté" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Toujours ignorer" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "Ouvrir" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "L'incident a déjà été rapporté" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Un incident connu s'est produit" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "Rapporter" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Un incident s'est produit" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Un incident a été rapporté" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Un nouvel incident s'est produit" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossible d'afficher la notification : %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Impossible de lire à partir du canal gio : « %s »" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossible de déterminer l'encodage sur le canal gio : %s" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Impossible d'activer le mode non bloquant sur le canal gio : %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossible de s'approprier « %s »" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Échec d'ouverture de la connexion par le gestionnaire de session : « %s », une notification peut réapparaître à la prochaine tentative" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "& [-v] [DIR]...\n\nAppliquette notifiant l'utilisateur lorsque de nouveaux incidents sont détectés par ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "_Fermer" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "Par _défaut" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Incident lors du rapport de la configuration" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "À propos de la configuration système ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "À propos" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Quitter" + +@@ -242,8 +250,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "Utiliser NUM en tant qu'UID client" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "Journaliser vers syslog" +@@ -345,12 +353,12 @@ msgstr "Exécuter EVENT sur DIR" + msgid "Communicate directly to the user" + msgstr "Communiquer directement à l'utilisateur" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "Aucun moteur disponible et le tampon est plein. Oubli de l'archive « %s »" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -362,30 +370,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nSurveille UPLOAD_DIRECTORY et déballe les archives entrantes dans l'emplacement\nDumpLocation indiqué dans abrt.conf\n\nSi UPLOAD_DIRECTORY n'est pas indiqué, utilise la valeur de l'option\nWatchCrashdumpArchiveDir dans abrt.conf" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Daemize" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Nombre de moteurs concurrents. La valeur par défaut est :" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Taille maximale de cache en Mio. La valeur par défaut est" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Nombre d'arguments non valide" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Valeur de l'option inconnue : « %s »\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -417,12 +425,12 @@ msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Impossible d'obtenir la liste des incidents depuis abrt-dbus : %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Impossible de créer le fichier temporaire « %s »" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +438,7 @@ msgid "" + msgstr "Impossible d'écrire sur « %s ». L'incident « %s » ne pourra être supprimé des incidents ignorés « %s »" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Impossible de renommer « %s » en « %s ». Échec à la suppression de l'incident « %s »" +@@ -446,7 +454,6 @@ msgstr "& [options] -d DIR\n\nAnalyse le backtrace C/C++, crée le hash de dupli + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -515,6 +522,12 @@ msgstr "Impossible d'extraire le message oops : « {0} »" + msgid "Oops text extracted successfully" + msgstr "Extraction réussie du texte du oops" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "Le journal du noyau indique que des erreurs matérielles ont été détectées.\nCe problème n'est donc a priori pas logiciel.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -532,7 +545,6 @@ msgstr "Tuer gdb s'il est exécuté pendant plus de NUM secondes" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -587,7 +599,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "Utilisation : %s [-vy] [--ids=BUILD_IDS_FILE]\n [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n [-e, --exact=PATH[:PATH]...]\n\nInstalle debuginfos pour tous les build-ids répertoriés dans BUILD_IDS_FILE\nvers CACHEDIR, en utilisant TMPDIR comme répertoire intermédiaire temporaire.\nLes anciens fichiers de CACHEDIR sont supprimés jusqu'à l'obtention d'une taille plus petite que SIZE.\n\n -v Verbeux\n -y Non interactif, répondre « Oui » à toutes les questions\n --ids Par défaut : build_ids\n --tmpdir Par défaut : @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n --cache Par défaut : /var/cache/abrt-di\n --size_mb Par défaut : 4096\n -e,--exact Télécharger uniquement les fichiers spécifiés\n --repo Schéma à utiliser lors de la recherche de dépôts.\n Par défaut : *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -599,11 +611,11 @@ msgstr "Le vidage mémoire fait référence à {0} fichiers debuginfo, {1} d'ent + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} des fichiers debuginfo ne sont pas installés" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Le fichier requis est manquant : {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -775,73 +787,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nSurveiller le fichier journal FI + msgid "Don't run PROG if STRs aren't found" + msgstr "Ne pas lancer PROG si les chaînes STR sont introuvables" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "" ++msgstr "Un problème de noyau s'est produit car le BIOS est cassé. Malheureusement, de tels problèmes ne peuvent pas être corrigés par les mainteneurs du noyau." + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "" ++msgstr "Un problème de noyau s'est produit, mais votre matériel n'est pas pris en charge, les mainteneurs du noyau ne sont donc pas en mesure de corriger ce problème." + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "Un incident noyau est survenu, mais votre noyau a été teinté (drapeau : %s). Les mainteneurs du noyau n'ont pas la possibilité de diagnostiquer les rapports teintés." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Modules teintés : %s." + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nExtrait le oops de FILE (ou de l'entrée standard)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Afficher les oops noyau trouvés sur la sortie standard" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Créer un nouveau répertoire d'incidents dans DIR pour chaque oops découvert" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Identique à l'option -d emplacement_de_vidage, l'emplacement du vidage est spécifié dans abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Sauvegarder les informations extraites dans PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "Rendre le répertoire des incidents lisible par tout le monde" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Limiter la création de répertoire d'incident à 1 par seconde" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" + +-#: ../src/plugins/abrt-dump-oops.c:378 ++#: ../src/plugins/abrt-dump-oops.c:379 + msgid "Can't update the problem: more than one oops found" + msgstr "Impossible de mettre à jour l'incident : plus d'un oops trouvé" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Mise en sommeil pour %d secondes" +@@ -869,7 +880,6 @@ msgstr "Le serveur retrace ne peut pas être utilisé car l'incident a une taill + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +-#. + #: ../src/plugins/abrt-retrace-client.c:103 + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 +@@ -1287,64 +1297,71 @@ msgstr "Impossible de passer la socket en mode bloquant." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Échec de l'encapsulation par SSL du socket TCP." + +-#: ../src/plugins/https-utils.c:215 ../src/plugins/https-utils.c:217 +-#: ../src/plugins/https-utils.c:219 ../src/plugins/https-utils.c:221 ++#: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Échec de l'activation d'une liaison client sur le socket SSL." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "Échec de l'activation de SSL3." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "Échec de l'activation de TLS." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Impossible de définir l'URL pour le socket SSL." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Connexion impossible à « %s »" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Impossible de mettre en place un point d'entrée pour le certificat." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Impossible d'installer une callback sur l'établissement de liaison." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Impossible de réinitialiser l'établissement d'une liaison." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Impossible de terminer l'établissement de liaison SSL : erreur NSS %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Impossible de fermer la socket SSL." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Réponse HTTP du serveur mal formée : « %s »" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Échec de réception de données : erreur NSS %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Réponse en blocs incorrecte." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Impossible d'initialiser NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Impossible d'initialiser le module de sécurité." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Impossible de fermer NSS." + +@@ -1435,43 +1452,43 @@ msgstr "Affiche le nombre de plantages récents" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Répertorier les problèmes non rapportés uniquement" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:141 ../src/cli/list.c:194 ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "Afficher le rapport détaillé" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Répertorier uniquement les problèmes plus récents que la date indiquée" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Répertorier uniquement les incidents plus anciens que la date indiquée" + +-#: ../src/cli/list.c:175 ++#: ../src/cli/list.c:224 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "" ++msgstr "La fonction de rapport automatique « Autoreporting » est désactivée. Veuillez envisager de l'activer en effectuant\nla commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "Un texte plus grand que ce qui suit sera abrégé" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Répertoire d'incidents « %s » inconnu" +diff --git a/po/ga.po b/po/ga.po +index 3d07464..2ab33b5 100644 +--- a/po/ga.po ++++ b/po/ga.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-01-07 23:20+0100\n" +-"PO-Revision-Date: 2014-01-07 22:19+0000\n" ++"POT-Creation-Date: 2014-02-26 09:33+0100\n" ++"PO-Revision-Date: 2014-02-11 11:03+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Irish (http://www.transifex.com/projects/p/fedora/language/ga/)\n" + "MIME-Version: 1.0\n" +@@ -25,177 +25,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "" + +-#: ../src/applet/applet.c:106 ++#: ../src/applet/applet.c:130 + msgid "" +-"The report which will be sent does not contain any security sensitive data. Therefore it is not necessary to bother you next time and require any further action by you. \n" +-"Do you want to enable automatically submitted anonymous crash reports?" ++"The report which will be sent does not contain any security sensitive data. " ++"Therefore it is not necessary to bother you next time and require any " ++"further action by you. \n" ++msgstr "" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + + #. The NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:202 ++#: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:517 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:591 ../src/applet/applet.c:653 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:901 ../src/applet/applet.c:916 ++#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:925 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1005 ../src/daemon/abrt-upload-watch.c:189 ++#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1093 ++#: ../src/applet/applet.c:1140 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1418 ++#: ../src/applet/applet.c:1465 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1559 ++#: ../src/applet/applet.c:1606 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:71 +-#: ../src/configuration-gui/main.c:30 ++#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "" + +@@ -230,8 +241,8 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + +-#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:297 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:272 ++#: ../src/daemon/abrt-server.c:798 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 + #: ../src/plugins/abrt-dump-xorg.c:244 + msgid "Log to syslog" + msgstr "" +@@ -333,12 +344,12 @@ msgstr "" + msgid "Communicate directly to the user" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:119 ++#: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -350,15 +361,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +@@ -405,12 +416,12 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:247 ++#: ../src/lib/ignored_problems.c:248 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -418,7 +429,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:261 ++#: ../src/lib/ignored_problems.c:262 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -434,7 +445,6 @@ msgstr "" + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. + #. * and component only. This is not supposed to happen often. +-#. + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +@@ -503,6 +513,12 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++msgid "" ++"The kernel log indicates that hardware errors were detected.\n" ++"This is most likely not a software problem.\n" ++msgstr "" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -520,7 +536,6 @@ msgstr "" + + #. Don't be completely silent. gdb run takes a few seconds, + #. * it is useful to let user know it (maybe) worked. +-#. + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +@@ -763,73 +778,72 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:124 ++#: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:129 ++#: ../src/plugins/abrt-dump-oops.c:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:144 ++#: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:253 ++#: ../src/plugins/abrt-dump-oops.c:254 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "" + + #. oopses don't contain any sensitive info, and even + #. * the old koops app was showing the oopses to all users +-#. +-#: ../src/plugins/abrt-dump-oops.c:277 ++#: ../src/plugins/abrt-dump-oops.c:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:278 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" +