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" + 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/gl.po b/po/gl.po +index 25d277f..e266e85 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -4,13 +4,12 @@ + # + # Translators: + # xosecalvo , 2013 +-# xosecalvo , 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: Galician (http://www.transifex.com/projects/p/fedora/language/gl/)\n" + "MIME-Version: 1.0\n" +@@ -27,177 +26,188 @@ msgstr "Ferramenta de Informe Automático de Fallos" + msgid "ABRT notification applet" + msgstr "Aplicativo 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 "O informe que se vai enviar non contén ningún dato de seguranza sensíbel. En consecuencia, non sería necesario amolar outra vez e requirir que interviñese vostede outra vez.\nDesexa activar os informes de fallos anónimos enviados automaticamente?" ++"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 "Non é posíbel conectar con NetworkManager por DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Non é posíbel determinar o estado da rede mediante NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Detectouse 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 "Detectouse un problema no paquete %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 "Non é posíbel 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 "Non é posíbel fechar a 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 "Advertencia" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Applet para a área de notificación que informa os usuarios sobre os problemas detectados por ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Xosé" + +-#: ../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 "Agochar" + +-#: ../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 "Detectouse un problema" + +-#: ../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 "Abrir" + +-#: ../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 "Produciuse un problema coñecido" + + #. 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 "Produciuse un problema" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Informouse sobre un problema" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Produciuse un problema novo" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Non é posíbel mostrar a 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 "Non é posíbel ler da canle gio: «%s»" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Non é posíbel definir a codificación da canle 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 "Non é posíbel activar o modo sen bloqueo para a canle gio: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Non é posíbel asumir a propiedade sobre «%s»" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Non é posíbel abrir o 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 "" + +-#: ../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 que notifica o usuario cando o ABRT detecta problemas novos\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 "& [opcións]" + msgid "Use NUM as client uid" + msgstr "Empregar NUM como identificador de usuario do 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 "Rexistrar en syslog" +@@ -335,12 +345,12 @@ msgstr "Executar EVENTO en DIR" + msgid "Communicate directly to the user" + msgstr "Comunicar directamente ao 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 "" + +-#: ../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 "Non é posíbel obter os datos do problema de abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Non é posíbel obter a lista do problema de 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 "Non é posíbel crear o ficheiro 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 " +@@ -420,7 +430,7 @@ msgid "" + msgstr "Non é posíbel escribir en «%s». Non se vai retirar o problema «%s» 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 "Non é posíbel renomear «%s» como «%s». Fallou a retirada do problema «%s»" +@@ -436,7 +446,6 @@ msgstr "& [opcións] -d DIR\n\nAnaliza o trazado inverso de C/C++, xera un hash + #. * 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 "Matar gdb se se executa durante máis 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" +@@ -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 "" + + #. 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 +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 +@@ -1277,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 "Non é posíbel conectar con «%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 "" + +-#: ../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 +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 "Mostrar un informe detallado" + +-#: ../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/gu.po b/po/gu.po +index dcb7db0..f123470 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -3,18 +3,16 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# , 2011-2012 + # Jiří Moskovčák , 2011 +-# sweta , 2011-2013 +-# sweta , 2013 ++# kepatel , 2014 + # sweta , 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-17 08:31+0000\n" ++"Last-Translator: kepatel \n" + "Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora/language/gu/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -30,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 "શ્ર્વેતા કોઠારી " + +-#: ../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)" ++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 "બહાર નીકળો" + +@@ -235,8 +244,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "ક્લાયન્ટ uid તરીકે 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 માં લૉગ લો" +@@ -338,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 "" ++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 +362,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 ધ્યાન રાખે છે અને આ DumpLocation માં આવતી પેટીને અનપેક કરે છે\nabrt.conf માં સ્પષ્ટ થયેલ છે\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 +419,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 +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' ને દૂર કરવામાં નિષ્ફળતા" +@@ -439,7 +448,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,7 +492,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" +@@ -492,21 +500,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 "" +@@ -525,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" +@@ -580,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\ndebuginfos ને BUILD_IDS_FILE માં યાદી થયેલા બધા build-ids માટે\nCACHEDIR માં, કામચલાઉ સ્ટેજીંગ ક્ષેત્ર તરીકે TMPDIR ની મદદથી સ્થાપિત કરે છે.\nCACHEDIR માંની જૂની ફાઇલો જ્યાં સુધી તે SIZE કરતાં નાનું માપ નહિ થાય ત્યાં સુધી કાઢી નાંખવામાં આવે છે.\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}" +@@ -592,11 +605,11 @@ msgstr "Coredump એ {0} debuginfo ફાઇલોનો સંદર્ભ આ + + #: ../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}" +@@ -751,7 +764,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 +781,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nવૉચ લૉગ ફાઇલ + 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 "કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારુ કર્નલને દૂષિત કરવામાં આવ્યુ છે (ફ્લેગ:%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 "મૂળભૂત આઉટપુટ પર મળેલ oopses ને છાપો" + + #. 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 "દરેક 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 "" +@@ -862,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 +@@ -1095,7 +1106,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 +1124,7 @@ msgstr "સર્વર પર તમારાં કાર્યનો પા + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [વિકલ્પો]\nપ્રક્રિયાઓ: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1280,64 +1291,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 ને શક્ય બનાવવવામાં નિષ્ફળતા.\n\n\n\n\n\n\n," ++ ++#: ../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 "ખરાબ 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 ને બંધ કરવામાં નિષ્ફળતા." + +@@ -1398,7 +1416,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]..." +@@ -1426,48 +1444,48 @@ msgstr "તાજેતરનાં ભંગાણોની ગણતરીન + + #: ../src/cli/abrt-cli.c:165 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "વધારે જાણકારી માટે 'abrt-cli --help' જુઓ" ++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]..." +diff --git a/po/he.po b/po/he.po +index 8e826b7..c7a724d 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -3,15 +3,15 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: ++# Elad Alfassa , 2011 + # Elad Alfassa , 2011 + # Jiří Moskovčák , 2011 +-# Elad Alfassa , 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: Hebrew (http://www.transifex.com/projects/p/fedora/language/he/)\n" + "MIME-Version: 1.0\n" +@@ -28,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?" ++"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 "אלעד אלפסה \nאסף ספיר " + +-#: ../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 "רשום ליומן המערכת" +@@ -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/hi.po b/po/hi.po +index e92b57d..6201f4c 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -6,19 +6,19 @@ + # Chandan kumar , 2012 + # Jiří Moskovčák , 2011 + # Keshav Mishra , 2013 +-# Keshav Mishra , 2013 + # rajesh , 2012 +-# Rajesh Ranjan , 2011-2013 +-# Rajesh , 2011 ++# Rajesh Ranjan , 2014 ++# Rajesh , 2011,2014 ++# Tarsem , 2014 + # Umesh Agarwal , 2013 + # zz , 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-12 08:29+0000\n" ++"Last-Translator: Rajesh Ranjan \n" + "Language-Team: Hindi (http://www.transifex.com/projects/p/fedora/language/hi/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -34,179 +34,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 "NetworkManager से DBus पर कनेक्ट नहीं कर सकता: %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 "राजेश रंजन (rranjan@redhat.com, rajeshkajha@yahoo.com)" + +-#: ../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 "जिओ चैनल पर एन्कोडिंग सेट नहीं कर सकता है: %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 "जिओ चैनल के लिए गैर ब्लॉकिंग पर चालू नहीं कर सकता है: %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\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 "" ++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 "" +@@ -239,8 +250,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 "सिसलॉग में लॉग करेंसिस्टल" +@@ -342,12 +353,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 "" ++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" +@@ -357,32 +368,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\nWatches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\nspecified in abrt.conf\n\nIf UPLOAD_DIRECTORY is not provided, uses a value of\nWatchCrashdumpArchiveDir option from abrt.conf" + +-#: ../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 +@@ -414,12 +425,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 " +@@ -427,7 +438,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' हटाने में विफल" +@@ -443,7 +454,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" +@@ -451,7 +461,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 "" +@@ -488,7 +498,7 @@ msgstr "& [-v] -d DIR\n\nUUID और 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" +@@ -496,21 +506,27 @@ msgstr "फ़ाइल {0} मौजूद नहीं" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "कोर से वूप्स पाठ निकाल रहा है" + + #: ../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 "वूप्स पाठ सफलतापूर्वक निकाले गए" ++ ++#: ../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 "" +@@ -529,7 +545,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" +@@ -540,7 +555,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\ncoredump-level बैकट्रैस को कोर डंप और तदनुरूपी द्विपदीय से बनाता है" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -553,12 +568,12 @@ 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" +@@ -584,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 "प्रयोग: %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-id के लिए डिबगइंफो\nCACHEDIR में संस्थापित करता है, TMPDIR को बतौर स्टेजिंग क्षेत्र उपयोग करके.\nCACHEDIR में पुराने फ़ाइल मिटाए जाते हैं जबतक यह आकार से छोटा है.\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}" +@@ -596,11 +611,11 @@ msgstr "कोरडंप संदर्भ {0} डिबगइंफो फ + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "डिबगइंफो फ़ाइल का {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}" +@@ -645,121 +660,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 "timer/IO/async घटना से संकेत प्रेषित" + + #: ../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 "चेतावनी समय समाप्ति से संकेत प्रेषित" + + #: ../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() was called?)" + + #: ../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 "" +@@ -772,76 +787,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nलॉग फ़ाइल FILE + 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 "" ++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 "" ++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\nExtract oops from FILE (or standard input)" + +-#: ../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 "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 "समस्या में निकाले सूचना को सहेजा" + +-#: ../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 "समस्या नहीं अद्यतन कर सका: एकाधिक वूप्स मिला" + +-#: ../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 "" +@@ -866,12 +880,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 +@@ -1099,7 +1112,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" +@@ -1117,7 +1130,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 +@@ -1284,64 +1297,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 "URL को SSL सॉकेट में सेट करने में विफल" + +-#: ../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 शटडाउन करने में विफल." + +@@ -1389,20 +1409,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फ़ाइल स्कैन करता है स्प्लिट वूप्स संदेस के लिए. उन्हें छाप और/या मिटा सकता है." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "छपाई में वूप्स मिले" + + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "मिले वूप्स से फ़ाइल मिटाएँ" + + #: ../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]..." +@@ -1432,46 +1452,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]..." +@@ -1488,7 +1508,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/hr.po b/po/hr.po +index afd49cc..450c407 100644 +--- a/po/hr.po ++++ b/po/hr.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: Croatian (http://www.transifex.com/projects/p/fedora/language/hr/)\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/hr_HR.po b/po/hr_HR.po +index d3df960..873e6e7 100644 +--- a/po/hr_HR.po ++++ b/po/hr_HR.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: Croatian (Croatia) (http://www.transifex.com/projects/p/fedora/language/hr_HR/)\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/hu.po b/po/hu.po +index 133c9f1..6c422c3 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -3,19 +3,17 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: ++# Ferenc Teknős , 2013 + # Gábor Molnár , 2011 + # Jiří Moskovčák , 2011 + # Máté Gelei , 2011 + # ptr , 2013 +-# Peter Borsa , 2012-2013 +-# Ferenc Teknős , 2013 +-# Zoltan Hoppár , 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" ++"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: Hungarian (http://www.transifex.com/projects/p/fedora/language/hu/)\n" + "MIME-Version: 1.0\n" +@@ -32,177 +30,188 @@ msgstr "Önműködő Hibabejelentő Eszköz" + msgid "ABRT notification applet" + msgstr "ABRT értesítő alkalmazás" + +-#: ../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 "A jelentésre szánt anyag nem tartalmaz semmilyen érzékeny adatot. Ennélfogva, nem szükséges legközelebb semmilyen további beavatkozás a felhasználó részéről.\nEngedélyezi az automatikus névtelenül beküldött hibajelentéseket?" ++"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 "DBus szolgáltatáson keresztül elérhetetlen a NetworkManager: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Hálózati állapot nem meghatározható a NetworkManager-en keresztül: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Problémát találtunk" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s csomagban egy hiba tapasztalható" + +-#: ../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' nem végrehajtható" + +-#: ../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 "Jelzés nem bezárható: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Figyelmeztetés" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Az értesítési területen megjelenő applet jelzi a felhasználóknak az ABRT által észlelt hibákat" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Zoltan Hoppar " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Kilépés" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Elrejt" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_Rólunk" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Probléma felfedezve" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Mindig figyelmen kivül hagyja" + + #. 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 "Megnyitás" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "A probléma már bejelentésre került." + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Ismert probléma történt" + + #. 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 "Jelentés" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Hiba történt" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "A probléma már bejelentésre került." + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Új probléma merült fel" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Jelzés nem megjeleníthető: %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 csatorna nem olvasható: %s" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "GIO csatorna kódolása nem beállítása: %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 módja nem beállítható: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' tulajdona nem átvehető" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Mappa nem megnyitható írásra: '%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 "A munkamenet kezelőnek nem sikerült megnyitni a kapcsolatot '%s' , a bejelentés újra megtehető a következő belépéskor és az értesítés a következő bejelentkezéskor újra megjelenik " + +-#: ../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\nAlkalmazás amely képes jelezni az ABRT-n keresztül a felhasználó felé ha új probléma történne\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 "_Alapbeállítások" + +-#: ../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 "A hiba bejelentő beállítása" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Az ABRT rendszerbeállításairól" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Rólunk" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Kilépés" + +@@ -237,8 +246,8 @@ msgstr "& [opciók]" + msgid "Use NUM as client uid" + msgstr "Alkalmazza a NUM számot mint kliens UID-t" + +-#: ../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 "Jelentés a rendszernaplóba" +@@ -340,12 +349,12 @@ msgstr "EVENT futtatása a DIR könyvtáron" + msgid "Communicate directly to the user" + msgstr "Közvetlen kommunikáció a felhasználóval" + +-#: ../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 "Nincs szabad dolgozó és tele a buffer. %s archív kihagyásra kerül." + +-#: ../src/daemon/abrt-upload-watch.c:275 ++#: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" + "\n" +@@ -357,15 +366,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nFigyeli az UPLOAD_DIRECTORY-t és kicsomagolja a bejövő archív anyagokat a bejövő DumpLocation helyyre ami az\nabrt.conf alapján definiált\n\nHa UPLOAD_DIRECTORY nincs, a \nWatchCrashdumpArchiveDir opciót alkalmazza az abrt.conf alapján" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Démonizálja" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Egyidejűleg elérhető dolgozók. Alapértelmezésben " + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " + +@@ -412,12 +421,12 @@ msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Problémák listája em elérhetőek az abrt-dbus szolgáltatásból: %s" + +-#: ../src/lib/ignored_problems.c:230 ++#: ../src/lib/ignored_problems.c:231 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "'%s' ideiglenes fájl létrehozása sikertelen" + +-#: ../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 " +@@ -425,7 +434,7 @@ msgid "" + msgstr "Mentés nem lehetséges ide: '%s'. '%s' probléma nem kerül eltávolításra a figyelmen kívül hagyott problémák közül '%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 "Nem átnevezhető '%s' erre '%s'. '%s' probléma eltávolítása sikertelen" +@@ -441,7 +450,6 @@ msgstr "& [opciók] -d DIR\n\nElemzi a C/C++ nyomkövetési adatokat, előáll + #. * 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" +@@ -510,6 +518,12 @@ msgstr "Oops üzenet nem kibontható: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops szöveg sikeresen kibontva" + ++#: ../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" +@@ -527,7 +541,6 @@ msgstr "Killsig küldése GDB-nek ha több mint NUM mp-nél tovább fut" + + #. 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" +@@ -770,73 +783,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nMonitorozza a FILE logfjájlt, + msgid "Don't run PROG if STRs aren't found" + msgstr "Ne futtassa a PROG ha STR nem található" + +-#: ../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 "Kernelhiba történt, de a kernele összekeveredett más kóddal (flags: %s). A kernel karbantartói képtelenek analizálni ezeket a jelentéseket." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Tainted állapotú modulok: %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\nBontsa ki az oppsot okozó fájlt a (standard bemenetre)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Talált problémák kiírása a szabványos kimenetre" + + #. 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 "Készítsen mindig új mappát DIR mappában minden egyes hibához amit talál" + +-#: ../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 "Ugyanaz mint a -d DumpLocation, a DumpLocation-t pedig az abrt.conf tartalmazza" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Mentse a kivonatolt információkat PROBLÉMA gyüjtőbe" + +-#: ../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 "A dump könyvtár környezetének olvashatóvá tétele" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aktiválja a probéma mappa létrehozását 1 másodpercenként" + +-#: ../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 "Nyomtassa ki a keresési string(eke)t az stdout-ra és lépjen ki" + +-#: ../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 "Probléma nem frissíthető: több mint egy oops található" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Kivárás %d másodpercig" +@@ -864,7 +876,6 @@ msgstr "A nyomkövető kiszolgáló nem használható ebben az esetben, mivel az + + #. 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 +@@ -1282,64 +1293,71 @@ msgstr "Socket blokkolási mód beállítása sikertelen." + msgid "Failed to wrap TCP socket by SSL." + msgstr "TCP tördelése SSL-lel sikertelen." + +-#: ../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 "A kliens kapcsolódása sikertelen az SSL sockethez." + +-#: ../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 "Hiba az URL beállításakor az SSL csatornára." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Kapcsolódás nem lehetséges ide: '%s'" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Sikertelen aláírás rögzítés." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Nem sikerült egy közös paraméterű visszahívást beállítani." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Nem sikerült a közös paraméterek alaphelyzetbe állítása." + +-#: ../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 kapcsolat handshake befejezése nem sikerült: NSS hiba %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Nem sikerült lezárni az SSL csatornát." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Hibás formátumú HTTP válasz fejléc: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Hiba az adatok fogadásakor: NSS hiba %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Rossz formátumú csonka válasz." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Sikertelen NSS beállítás." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "A biztonsági modul beállítása nem sikerült." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS leállítása sikertelen." + +@@ -1430,43 +1448,43 @@ msgstr "Írja ki a legutóbbi összeomlások számát" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Tekintse meg az 'abrt-cli PARANCS --help' a további információkért" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [opciók] [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 "Részletes jelentés megjelenítése" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Csak azoknak az esetek számát jelenítse meg ami frissebb, mintt a meghatározott időbélyeg" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Csak azokat a megadott eseteket jelenítse meg amik régebbiek mint az időbélyeg" + +-#: ../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 [opciók] DIR..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "Szöveg nagyobb, ezért így fog megjelenni rövidített szövegként" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nincs ilyen problémát tartalmazó könyvtár '%s'" +diff --git a/po/hy.po b/po/hy.po +index a32213b..3734fa9 100644 +--- a/po/hy.po ++++ b/po/hy.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: Armenian (http://www.transifex.com/projects/p/fedora/language/hy/)\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/ia.po b/po/ia.po +index dcb32ff..01d3a93 100644 +--- a/po/ia.po ++++ b/po/ia.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: Interlingua (http://www.transifex.com/projects/p/fedora/language/ia/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,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 "Celar" + +-#: ../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 "Reportar" + +-#: ../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/id.po b/po/id.po +index ff8dc5b..790c2b4 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -12,8 +12,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: Indonesian (http://www.transifex.com/projects/p/fedora/language/id/)\n" + "MIME-Version: 1.0\n" +@@ -30,177 +30,188 @@ msgstr "Automatic Bug Reporting Tool" + msgid "ABRT notification applet" + msgstr "Aplet pemberitahuan 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 "Masalah terdeteksi" + +-#: ../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 "Peringatan" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Pemberitahuan daerah applet yang memberitahu pengguna tentang masalah terdeteksi oleh ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "penghargaan pada penterjemah" + +-#: ../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 "Sembunyi" + +-#: ../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 "Laporan" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Masalah telah terjadi" + +-#: ../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 "" + +@@ -235,8 +246,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 "Catat ke syslog" +@@ -338,12 +349,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" +@@ -355,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 "" + +@@ -410,12 +421,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 +434,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 +450,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 +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" +@@ -525,7 +541,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" +@@ -768,73 +783,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 "Cetak menemukan oopses pada output standar" + + #. 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 "" +@@ -862,7 +876,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 +@@ -1280,64 +1293,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 "" + +@@ -1428,43 +1448,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/ilo.po b/po/ilo.po +index 7cf76c1..6b67ebf 100644 +--- a/po/ilo.po ++++ b/po/ilo.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: Iloko (http://www.transifex.com/projects/p/fedora/language/ilo/)\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/is.po b/po/is.po +index 5469ce4..e54acc9 100644 +--- a/po/is.po ++++ b/po/is.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: Icelandic (http://www.transifex.com/projects/p/fedora/language/is/)\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/it_IT.po b/po/it_IT.po +index 4c70089..f588d74 100644 +--- a/po/it_IT.po ++++ b/po/it_IT.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: Italian (Italy) (http://www.transifex.com/projects/p/fedora/language/it_IT/)\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/ja.po b/po/ja.po +index 4fc2877..a320655 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -4,24 +4,20 @@ + # + # Translators: + # Casey Jones , 2011 +-# Hajime Taira , 2010-2011,2013 + # hyuugabaru , 2009 + # Jiří Moskovčák , 2011 +-# Kiyoto Hashida , 2009-2012 + # Makoto Mizukami , 2010 + # nnakakit , 2013 +-# noriko , 2013 +-# noriko , 2012 +-# noriko , 2010 +-# Tomoyuki KATO , 2012-2013 +-# 高一人参 @欠陥遺伝子 , 2011, 2012 ++# noriko , 2014 ++# noriko , 2010,2012-2013 ++# 高一人参 @欠陥遺伝子 , 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-12 05:40+0000\n" ++"Last-Translator: noriko \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora/language/ja/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -37,177 +33,188 @@ 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 "自動的に送信される anonymous のクラッシュ報告を有効にしますか?" + + #. 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 "Casey Jones \nHajime Taira \nNoriko Mizumoto " + +-#: ../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 "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 "永久に無視" + + #. 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 "System Config ABRT について" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "ABRT について" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "終了" + +@@ -242,8 +249,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 にログする" +@@ -345,12 +352,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 "空きワーカーが無く、バッファーが満杯です。'%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 +369,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY をウォッチし、abrt.conf で指定された \nDumpLocation に格納されたアーカイブを展開します。\n\nUPLOAD_DIRECTORY が指定されていない場合、\nabrt.conf の WatchCrashdumpArchiveDir オプションの値を使用します。" + +-#: ../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 +@@ -417,12 +424,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 " +@@ -430,7 +437,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' の削除に失敗しました。" +@@ -446,7 +453,6 @@ msgstr "& [オプション] -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" +@@ -515,6 +521,12 @@ msgstr "ウップスメッセージを抽出できません: '{0}'" + 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 "カーネルログではハードウェア関連のエラーが検出されたことが示されているため、\nこれはおそらくソフトウェアに関する問題ではないでしょう。\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -532,7 +544,6 @@ msgstr "gdb が 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" +@@ -587,7 +598,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-id の debuginfo を CACHEDIR に\nインストールします。TMPDIR を一時的なステージングエリアに使用します。\nCACHEDIR の大きさが SIZE に減少するまで 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}" +@@ -599,11 +610,11 @@ msgstr "コアダンプにより {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}" +@@ -775,73 +786,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nFILE ログファイルを監視 + 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 "& [-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 "問題のディレクトリの作成を毎秒 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 "問題を更新できません: 複数のウップスが見つかりました" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d 秒スリープします" +@@ -869,7 +879,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 +@@ -1287,64 +1296,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 のシャットダウンに失敗しました。" + +@@ -1435,43 +1451,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 "自動報告機能は無効になっています。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' はありません" +diff --git a/po/ja_JP.po b/po/ja_JP.po +index 3d66ccf..6f23286 100644 +--- a/po/ja_JP.po ++++ b/po/ja_JP.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: Japanese (Japan) (http://www.transifex.com/projects/p/fedora/language/ja_JP/)\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/ka.po b/po/ka.po +index 13340ef..12be4b5 100644 +--- a/po/ka.po ++++ b/po/ka.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: Georgian (http://www.transifex.com/projects/p/fedora/language/ka/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,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 "" + +@@ -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 "ჟურნალირება syslog-ში" +@@ -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 "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 "" + +@@ -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/kk.po b/po/kk.po +index 407675a..3b196da 100644 +--- a/po/kk.po ++++ b/po/kk.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: Kazakh (http://www.transifex.com/projects/p/fedora/language/kk/)\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/km.po b/po/km.po +index bb3c642..ec2c8c9 100644 +--- a/po/km.po ++++ b/po/km.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: Khmer (http://www.transifex.com/projects/p/fedora/language/km/)\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/ks.po b/po/ks.po +index 787ad38..7e00c58 100644 +--- a/po/ks.po ++++ b/po/ks.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: Kashmiri (http://www.transifex.com/projects/p/fedora/language/ks/)\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/ku.po b/po/ku.po +index 2c469e1..c01261a 100644 +--- a/po/ku.po ++++ b/po/ku.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: Kurdish (http://www.transifex.com/projects/p/fedora/language/ku/)\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/ky.po b/po/ky.po +index eec4b24..87c4f7f 100644 +--- a/po/ky.po ++++ b/po/ky.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: Kirgyz (http://www.transifex.com/projects/p/fedora/language/ky/)\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/la.po b/po/la.po +index f787874..2ecb0a4 100644 +--- a/po/la.po ++++ b/po/la.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: Latin (http://www.transifex.com/projects/p/fedora/language/la/)\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/lo.po b/po/lo.po +index a270d07..a8ae66c 100644 +--- a/po/lo.po ++++ b/po/lo.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: Lao (http://www.transifex.com/projects/p/fedora/language/lo/)\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/lt.po b/po/lt.po +index 215d6d7..a953cb3 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -4,13 +4,12 @@ + # + # Translators: + # aurisc4 , 2013 +-# aurisc4 , 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: Lithuanian (http://www.transifex.com/projects/p/fedora/language/lt/)\n" + "MIME-Version: 1.0\n" +@@ -27,177 +26,188 @@ msgstr "Automatinio pranešimo apie klaidas įrankis" + msgid "ABRT notification applet" + msgstr "ABRT pranešimų įtaisas" + +-#: ../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 "Siunčiama ataskaita neturi jokių saugumo požiūriu jautrių duomenų. Taigi nėra būtina jus trukdyti kitą kartą ir reikalauti tolesnių veiksmų. \nAr norite įjungti automatiškai siunčiamus anonimines lūžimo ataskaitas?" ++"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 "Nepavyksta prisijungti prie NetworkManager per DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nepavyksta nustatyti tinklo būsenos per NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Aptikta problema" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Aptikta problema %s pakete" + +-#: ../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 "Nepavyko paleisti „%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 "Nepavyksta užverti pranešimo: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Įspėjimas" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Pranešimų vietos įtaisas, kuris praneša naudotojams apie ABRT aptiktas problemas" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "išvertė:\nAurimas Černius " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Išeiti" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Slėpti" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_Apie" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Aptikta problema" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Visada nepaisyti" + + #. 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 "Atverti" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "Apie šią problemą jau pranešta" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Kilo žinoma problema" + + #. 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 "Pranešti" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Kilo problema" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Apie šią problemą jau pranešta" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Kilo nauja problema" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nepavyksta parodyti pranešimo: %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 "Nepavyksta skaityti iš gio kanalo: „%s“" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nepavyksta nustatyti gio kanalo koduotės: %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 "Nepavyksta įjungti neblokuojančios veiksenos gio kanalui: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nepavyko tapti „%s“ savininku" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nepavyksta atverti katalogo rašymui „%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 "Nepavyko prisijungti prie seanso valdyklės: „%s“, pranešimas gali pasirodyti kitą kartą prisijungus" + +-#: ../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Įtaisas, kuris praneša naudotojui, kai ABRT aptinka naują problemą\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 "_Numatytieji" + +-#: ../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 "Pranešimo apie problemas konfigūracija" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Apie System Config ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Apie" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Išeiti" + +@@ -232,8 +242,8 @@ msgstr "& [parinktys]" + msgid "Use NUM as client uid" + msgstr "Naudoti NUM kaip kliento 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 "Įrašyti į syslog" +@@ -335,12 +345,12 @@ msgstr "Vykdyti ĮVYKĮ KAT" + msgid "Communicate directly to the user" + msgstr "Komunikuoti tiesiogiai su naudotoju" + +-#: ../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 "Nėra laisvų darbininkų ir pilnas buferis. Praleidžiamas archyvas „%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" +@@ -352,15 +362,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [NUSIUNTIMO_KATALOGAS]\n\n\nStebi NUSIUNTIMO_KATALOGĄ ir išpakuoja atsiunčiamus archyvus į abrt.conf\nnurodytą DumpLocation\n\nJei NUSIUNTIMO_KATALOGAS nenurodytas, naudojamas abrt.conf parametras\nWatchCrashdumpArchiveDir" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Demonizuotis" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Darbininkų skaičius. Numatyta " + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Didžiausias podėlio dydis MiB. Numatyta " + +@@ -407,12 +417,12 @@ msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nepavyko gauti problemų sąrašo iš 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 "Nepavyko sukurti laikinojo failo „%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 " +@@ -420,7 +430,7 @@ msgid "" + msgstr "Nepavyko įrašyti į „%s“. Problema „%s“ nebus pašalinta iš nepaisomų problemų „%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 "Nepavyko pervadinti „%s“ į „%s“. Nepavyko pašalinti problemos „%s“" +@@ -436,7 +446,6 @@ msgstr "& [parinktys] -d KAT\n\nAnalizuoja C/C++ pėdsaką, generuoja dublikato + #. * 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 "Nepavyksta išgauti oops pranešimo: „{0}“" + msgid "Oops text extracted successfully" + msgstr "Oops tekstas sėkmingai išgautas" + ++#: ../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 "Išjungti gdb, jei ji veikia daugiau nei NUM sekundžių" + + #. 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 "& [-vs] [-F STR]... FAILAS PROG [ARG]\n\nStebėti žurnalo failą FAILAS + msgid "Don't run PROG if STRs aren't found" + msgstr "Nepaleisti PROG, jei STR nerasta" + +-#: ../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 "Kilo branduolio problema, bet jūsų branduolys buvo pakeistas (požymiai:%s). Branduolio prižiūrėtojai negali diagnozuoti pakeistų pranešimų." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr " Sugadinti moduliai: %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\nIšgauti oops iš FILE (arba standartinės įvesties)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Atspausdinti rastus oops į standartinėje išvestyje" + + #. 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 "Sukurti naują problemos katalogą KAT kataloge kiekvienai rastai 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 "Tas pats kaip -d DumpLocation, DumpLocation yra nurodyta abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Įrašyti išgautą informaciją į 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 "Padaryti problemų katalogą skaitomą pasauliui" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Nustatyti problemų aplankų kūrimą į 1 per sekundę" + +-#: ../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 "Atspausdinti paieškos eilutę(-es) standartinėje išvestyje ir išeiti" + +-#: ../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 "Nepavyksta atnaujinti problemos: rastas daugiau nei vienas oops" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Miegama %d sekundžių" +@@ -859,7 +872,6 @@ msgstr "Pertrasavimo serveris negali būti naudojamas, nes nes lūžimas yra per + + #. 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 "Nepavyko nustatyti jungties blokavimo veiksenos." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Nepavyko apvilkti TCP jungties su 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 "Nepavyko įjungti kliento rankos paspaudimo SSL jungtyje." + +-#: ../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 "Nepavyko nustatyti SSL jungties URL." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Nepavyko prisijungti prie „%s“" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Nepavyko nustatyti liudijimo prikabinimo." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Nepavyko nustatyti rankos paspaudimo atgalinio iškvietimo." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Nepavyko atstatyti rankos paspaudimo." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Nepavyko užbaigti SSL rankos paspaudimo: NSS klaida %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Nepavyko užverti SSL jungties." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Blogai suformuota HTTP atsako antraštė: „%s“" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Nepavyko gauti duomenų: NSS klaida %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Blogai suformuotas skaldytas atsakymas." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Nepavyko inicijuoti NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Nepavyko inicijuoti saugumo modulio." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Nepavyko išjungti NSS." + +@@ -1425,43 +1444,43 @@ msgstr "Atspausdinti nesenų lūžimų skaičių" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [parinktys] [KAT]..." + +-#: ../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 "Rodyti detalią ataskaitą" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Išvardinti tik problemas, kurios naujesnės nei nurodyta laiko žyma" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Išvardinti tik problemas, kurios senesnės nei nurodyta laiko žymo" + +-#: ../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 [parinktys] KAT..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "Ilgesnis nei toks tekstas bus rodomas sutrumpintas" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nėra tokio problemos aplanko „%s“" +diff --git a/po/lv.po b/po/lv.po +index 48e11f7..f9996d4 100644 +--- a/po/lv.po ++++ b/po/lv.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: Latvian (http://www.transifex.com/projects/p/fedora/language/lv/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,188 @@ msgstr "" + msgid "ABRT notification applet" + msgstr "ABRT paziņojumu sīklietotne" + +-#: ../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 "Nevar aizvērt paziņojumu: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Brīdinājums" + +-#: ../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 "Paslēpt" + +-#: ../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 "Atvērt" + +-#: ../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 "Ziņot" + +-#: ../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 "& [iespējas]" + 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 "Parādīt detalizētu ziņojumu" + +-#: ../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/mai.po b/po/mai.po +index 454512e..b5d4c8d 100644 +--- a/po/mai.po ++++ b/po/mai.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: Maithili (http://www.transifex.com/projects/p/fedora/language/mai/)\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/mg.po b/po/mg.po +index 69b05b0..a30479d 100644 +--- a/po/mg.po ++++ b/po/mg.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: Malagasy (http://www.transifex.com/projects/p/fedora/language/mg/)\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/mk.po b/po/mk.po +index 66c9f0d..30b955b 100644 +--- a/po/mk.po ++++ b/po/mk.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: Macedonian (http://www.transifex.com/projects/p/fedora/language/mk/)\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/ml.po b/po/ml.po +index b1c4cdf..fca2985 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -3,15 +3,15 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Ani Peter , 2012-2013 ++# Ani Peter , 2014 + # Jiří Moskovčák , 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-12 06:58+0000\n" ++"Last-Translator: Ani Peter \n" + "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora/language/ml/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -27,179 +27,190 @@ 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?" +-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 "Ani Peter | അനി പീറ്റര്‍ " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" +-msgstr "പു_റത്തു് കടക്കുക" ++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 "സം_ബന്ധിച്ചു്" ++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 "" ++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 ചാനലിനു് 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'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../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 "_അടയ്ക്കുക" ++ ++#: ../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 "സംബന്ധിച്ചു്" ++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 "" +@@ -232,8 +243,8 @@ msgstr "& [options]" + msgid "Use NUM as client uid" + msgstr "ക്ലയന്റ് യുഐഡി ആയി 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-ലേക്കു് പ്രവേശിയ്ക്കുക" +@@ -335,12 +346,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" +@@ -350,32 +361,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\nWatches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\nspecified in abrt.conf\n\nIf UPLOAD_DIRECTORY is not provided, uses a value of\nWatchCrashdumpArchiveDir option from abrt.conf" + +-#: ../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 +@@ -407,12 +418,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 " +@@ -420,7 +431,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' പ്രശ്നം നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല." +@@ -436,7 +447,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" +@@ -481,7 +491,7 @@ msgstr "& [-v] -d DIR\n\nപൈഥണ്‍ ക്രാഷ് ഡംപുക + + #: ../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" +@@ -489,21 +499,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 "" +@@ -522,7 +538,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" +@@ -551,7 +566,7 @@ msgstr "പിശക്: ജിഡിബി ഒരു ഡേറ്റയും + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "പിശക്: %s" ++msgstr "പിശക്: %s " + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +@@ -577,7 +592,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-ലേക്കു് ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നു\nto CACHEDIR, താല്‍ക്കാലിക സ്ഥലമായി TMPDIR ഉപയോഗിയ്ക്കുന്നു.\nSIZE-നേക്കാള്‍ ചെറുതായാല്‍ CACHEDIR-ലുള്ള പഴയ ഫയലുകള്‍ വെട്ടി നീക്കപ്പെടുന്നു.\n\n -v വര്‍ബറോസ് ആകുന്നു\n -y നോണ്‍ ഇന്ററാക്ടീവ്,'ഉവ്വു്' എല്ലാ ചോദ്യങ്ങള്‍ക്കും\n\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}" +@@ -589,11 +604,11 @@ msgstr "കോര്‍ഡംപ് {0} debuginfo ഫയലുകള്‍ സ + + #: ../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}" +@@ -748,7 +763,7 @@ msgstr "എക്സ്പ്ലോയിട്ടബിള്‍ പരിധ + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "നിലവിലുള്ള നിര്‍ദ്ദേശ:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -765,76 +780,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 "തകരാറുള്ള ബയോസ് കാരണം ഒരു കേര്‍ണല്‍ പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു. ഇവ പക്ഷേ കേര്‍ണല്‍ കൈകാര്യം ചെയ്യുന്നവര്‍ക്കു് പരിഹരിയ്ക്കുവാന്‍ സാധ്യമല്ല." + +-#: ../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 "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE-ല്‍ നിന്നും ഒഒപിഎസ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണയുള്ള ഇന്‍പുട്ട്)" + +-#: ../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 "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 "" +@@ -859,12 +873,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 +@@ -1092,7 +1105,7 @@ msgstr "പോളിങ് പ്രക്രിയകളുടെ താമസ + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(ഡീബഗ് ചെയ്യുക) ഡംപ് ഡയറക്ടറിയില്‍ നിന്നും തയ്യാറാക്കിയ താല്‍‌ക്കാലിക ആര്‍ക്കൈവ് വെട്ടി നീക്കുവാന്‍ സാധ്യമല്ല" ++msgstr "(debug) ഇതിലുള്ള ഡംപ് ഡയറക്ടറിയില്‍ നിന്നും തയ്യാറാക്കിയ താല്‍ക്കാലിക ആര്‍ക്കൈവ് വെട്ടി നീക്കരുതു്" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1110,7 +1123,7 @@ msgstr "സര്‍വറില്‍ നിങ്ങളുടെ ജോലി + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [options]\nOperations: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -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 "SSL3 പ്രവര്‍ത്തന സജ്ജമാക്കുന്നതില്‍ പരാജയപ്പെട്ടു." ++ ++#: ../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 "'%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 "എസ്എസ്എല്‍ ഹാന്‍ഡ്ഷേക്ക് പൂര്‍ത്തിയാക്കിയില്ല: എന്‍എസ്എസ് പിശക് %d." + +-#: ../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 "തെറ്റായ എച്‌ടിടിപി മറുപടിയ്ക്കുള്ള ഹെഡര്‍: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "ഡേറ്റാ ലഭ്യമാക്കുന്നതു് പരാജയപ്പെട്ടു: എന്‍എസ്എസ് പിശക് %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 "എന്‍എസ്എസ് ആരംഭിയ്ക്കുന്നതില്‍ പരാജയപ്പെട്ടു." + +-#: ../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 "എന്‍എസ്എസ് അടച്ചുപൂട്ടല്‍ പരാജയപ്പെട്ടു." + +@@ -1395,7 +1415,7 @@ msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകളുള + #: ../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]..." +@@ -1425,46 +1445,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 "സ്വയമായി രേഖപ്പെടുത്ത വിശേഷത പ്രവര്‍ത്തന രഹിതമാണു്. റൂട്ട് അനുമതികളുള്ള ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\nഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\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]..." +diff --git a/po/mn.po b/po/mn.po +index 1580d84..6f2e38a 100644 +--- a/po/mn.po ++++ b/po/mn.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: Mongolian (http://www.transifex.com/projects/p/fedora/language/mn/)\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/mr.po b/po/mr.po +index 8d8422a..eaa018a 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -4,15 +4,14 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# sandeeps , 2011-2012 +-# sandeeps , 2011,2013 ++# sandeeps , 2011,2013-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-12 04:27+0000\n" ++"Last-Translator: sandeeps \n" + "Language-Team: Marathi (http://www.transifex.com/projects/p/fedora/language/mr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -28,177 +27,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 "डिबस: %s वरील नेटवर्कमॅनेजरशी जोडणी अशक्य" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "नेटवर्कमॅनेजर: %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 "संदिप शेडमाके , 2010, 2011." + +-#: ../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' सह जोडणी उघडण्यास अपयशी, पुढील प्रवेशवेळी सूचना पुन्हा आढळेल" + +-#: ../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 "संरचना कळताना अडचण" + +-#: ../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 "बाहेर पडा" + +@@ -233,8 +243,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 करीता लॉग" +@@ -336,12 +346,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" +@@ -353,30 +363,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY वॉच करतो आणि येणाऱ्या आर्काइव्हजना\nabrt.conf मधील निर्देशीत DumpLocation येथे खुले करतो\n\nUPLOAD_DIRECTORY पुरवले नसल्यास, \nWatchCrashdumpArchiveDir पर्यायच्या मूल्याचा वापर करते abrt.conf पासून " + +-#: ../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 +@@ -408,12 +418,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 " +@@ -421,7 +431,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' काढून टाकणे अपयशी" +@@ -437,7 +447,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" +@@ -496,7 +505,7 @@ msgstr "कोरपासून ऊप्स मजकूर प्राप् + 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}'" +@@ -506,6 +515,12 @@ msgstr "ऊप्स संदेश: '{0}' प्राप्ति अशक + 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 "कर्नल लॉग आढळलेल्या हार्डवेअर त्रुटी निर्देशीत.\nहे संभाव्यतया सॉफ्टवेअर अडचण नाही.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -523,7 +538,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" +@@ -578,7 +592,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 यांना CACHEDIR करिता debuginfo इंस्टॉल करा\n, TMPDIR यास तात्पुर्ते स्टेजिंग क्षेत्र असे वापर करा.\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}" +@@ -590,11 +604,11 @@ msgstr "कोरडम्प {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}" +@@ -766,73 +780,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nलॉग FILE वर लक् + msgid "Don't run PROG if STRs aren't found" + msgstr "STRs न आढळल्यास 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 "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE (किंवा स्टँडर्ड इंपुट) पासून ऊप्स प्राप्त करा" + +-#: ../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 "प्रत्येक ऊप्सकरीता 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 "प्रति १ सेकंदकरिता थ्रॉटल अडचण डिरेक्ट्रीचे निर्माण" + +-#: ../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 "अडचण सुधारित करणे अशक्य: एकापेक्षा जास्त ऊप्स आढळले" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d सेकंदकरिता निष्क्रीय झाले" +@@ -860,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 +@@ -1111,7 +1123,7 @@ msgstr "सर्व्हरवरील कार्याचे पासव + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client [पर्याय]\nऑपरेशन्स: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1278,64 +1290,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 "URL ला SSL सॉकेटकरीता निश्चित करण्यास अपयशी." + +-#: ../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 शटडाउन करण्यास अपयशी." + +@@ -1426,43 +1445,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 "" ++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 "स्वरिपोर्टिंग गुणविशेष बंद आहे. कृपया\nroot परवानगी सक्षम वापरकर्ता नुरूप, '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 "यापेक्षा मोठे मजकूर अब्रिज्ड दाखवले जाईल" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "या प्रकारची अडचण डिरेक्ट्री '%s' नाही" +diff --git a/po/ms.po b/po/ms.po +index 0ef7866..aeda45e 100644 +--- a/po/ms.po ++++ b/po/ms.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: Malay (http://www.transifex.com/projects/p/fedora/language/ms/)\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/ms_MY.po b/po/ms_MY.po +index 7286c2e..69afb38 100644 +--- a/po/ms_MY.po ++++ b/po/ms_MY.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: Malay (Malaysia) (http://www.transifex.com/projects/p/fedora/language/ms_MY/)\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/my.po b/po/my.po +index ca8b172..7ad8de2 100644 +--- a/po/my.po ++++ b/po/my.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: Burmese (http://www.transifex.com/projects/p/fedora/language/my/)\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/nb.po b/po/nb.po +index 756aed4..92d4d02 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -4,14 +4,13 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# Kjartan Maraas , 2012 +-# Kjartan Maraas , 2011 ++# Kjartan Maraas , 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: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora/language/nb/)\n" + "MIME-Version: 1.0\n" +@@ -28,177 +27,188 @@ msgstr "Automatisk feilrapporteringsverktøy" + msgid "ABRT notification applet" + msgstr "ABRT-varslingsprogram for panelet" + +-#: ../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 ble funnet" + +-#: ../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 ble funnet i pakken %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 "Kan ikke kjø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 "Varslingsikon som varsler brukere om feil funnet av ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Kjartan Maraas " + +-#: ../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 funnet" + +-#: ../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 "Rapporter" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Et problem har oppstått" + +-#: ../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 ta eierskap av «%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] [KATALOG] …\n\nPanelprogram som varsler bruker når nye problemer oppdages av 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 "" + +@@ -233,8 +243,8 @@ msgstr "& [alternativer]" + 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 "Logg til syslog" +@@ -336,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" +@@ -353,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 "" + +@@ -408,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 " +@@ -421,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 "" +@@ -437,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" +@@ -506,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" +@@ -523,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" +@@ -766,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 "" +@@ -860,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 +@@ -1278,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 "Klarte ikke å lukke SSL-plugg." + +-#: ../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 "Klarte ikke å stenge ned NSS." + +@@ -1426,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 "Vis detaljert 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/nds.po b/po/nds.po +index 80894f4..b08646f 100644 +--- a/po/nds.po ++++ b/po/nds.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: Low German (http://www.transifex.com/projects/p/fedora/language/nds/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,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 "Verbargen" + +-#: ../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 "Berichten" + +-#: ../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/ne.po b/po/ne.po +index 5f9fe4b..640b7c6 100644 +--- a/po/ne.po ++++ b/po/ne.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: Nepali (http://www.transifex.com/projects/p/fedora/language/ne/)\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/nl.po b/po/nl.po +index 37e3c23..9b50989 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -3,16 +3,16 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Geert Warrink , 2011-2013 ++# Geert Warrink , 2014 + # Jiří Moskovčák , 2011 + # Richard E. van der Luit , 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-16 18:43+0000\n" ++"Last-Translator: Geert Warrink \n" + "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora/language/nl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -28,177 +28,188 @@ msgstr "Automatisch bug-rapporteerhulpmiddel" + msgid "ABRT notification applet" + msgstr "ABRT-berichtapplet " + +-#: ../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 "Het rapport dat verzonden zal worden bevat geen gevoelige beveiligingsdata. Het is daarom niet nodig om je de volgende keer lastig te vallen en verdere acties van je te vragen.\nWil het automatisch indienen van anonieme crashrapporten aanzetten?" ++"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 "Het rapport dat verzonden zal worden bevat geen gevoelige beveiligingsdata. Het is daarom niet nodig om je de volgende keer lastig te vallen en verdere acties van je te vragen.\n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "Wil je het automatisch indienen van crashrapporten aanzetten?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "Wil je het automatisch indienen van anonieme crashrapporten aanzetten?" + + #. 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 "Kan niet verbinden met 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 "Kan de netwerkstatus via NetworkManager niet bepalen: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Er is een probleem ontdekt" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Er is een probleem in pakket %s ontdekt" + +-#: ../src/applet/applet.c:357 ++#: ../src/applet/applet.c:398 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s en de diagnosedata is ingediend" + +-#: ../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 '%s' niet uitvoeren" + +-#: ../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 "Kan notificatie niet sluiten: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Waarschuwing" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Mededelingengebied-applet dat gebruiker bericht over problemen ontdekt door ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Geert Warrink \nRichard van der Luit " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Verlaten" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Verbergen" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_Over" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Er is een probleem ontdekt" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Altijd negeren" + + #. 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 "Het probleem is al gerapporteerd" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Er Is Een Bekend Probleem Opgetreden" + + #. 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" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Er is een probleem opgetreden" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Er is een probleem gerapporteerd" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Er Is Een Nieuw Probleem Opgetreden" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan notificatie niet tonen: %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 "Kan niet van gio kanaal lezen: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan codering op gio kanaal niet instellenl: %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 "Kan niet-blokkerende modus niet instellen voor gio kanaal: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan '%s' niet claimen" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan map niet openen voor het schrijven van '%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 "Verbingding openen met sessiemanager mislukte: '%s', kennisgeving kan bij de volgende keer inloggen verschijnen" + +-#: ../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] [MAP]...\n\nApplet die de gebruiker waarschuwt als nieuwe problemen door ABRT gedetecteerd zijn\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "_Sluiten" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "_Standaarden" + +-#: ../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 "Probleemrapportageconfiguratie" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Over systeem configuratie ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Over" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Verlaten" + +@@ -233,8 +244,8 @@ msgstr "& [opties]" + msgid "Use NUM as client uid" + msgstr "Gebruik NUM as cliënt 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 "Loggen naar syslog" +@@ -336,12 +347,12 @@ msgstr "Voer EVENT uit op DIR" + msgid "Communicate directly to the user" + msgstr "Communiceer rechtstreeks met de gebruiker" + +-#: ../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 "Geen vrije werkers en een volle buffer. Archief '%s' wordt weggelaten" + +-#: ../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,30 +364,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_MAP]\n\n\nVolgt UPLOAD_MAP en pakt binnenkomende archieven uit in de DumpLocation\ngespecificeerd in abrt.conf\n\nAls UPLOAD_MAP niet opgegeven is, wordt, een waarde uit\nde WatchCrashdumpArchiveDir optie uit abrt.conf gebruikt." + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Maak en daemon" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Aantal gelijktijdige werkers. Standaard is " + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale cachegrootte in MiB. Standaard is " + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Ongeldig aantal argumenten" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Onbekende optiewaarde: '%s'\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -408,12 +419,12 @@ msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Kan geen probleemlijst verkrijgen van 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 "Kan tijdelijk bestand '%s' niet aanmaken" + +-#: ../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 "Kan niet naar '%s' schrijven. Probleem '%s' zal niet uit de genegeerde problemen '%s' verwijderd worden" + + #. 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 "Kan '%s' niet hernoemen naar '%s'. Probleem '%s' te verwijderen mislukte" +@@ -437,7 +448,6 @@ msgstr "& [opties] -d DIR\n\nAnalyseert C/C++ backtrace, genereert duplicaat has + #. * 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 "Kan de oops boodschap niet extraheren: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops tekst met succes geextraheerd" + ++#: ../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 "De kernel log geeft aan dat hardwarefouten zijn ontdekt.\nDit is waarschijnlijk geen softwareprobleem.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -523,7 +539,6 @@ msgstr "Sluit gdb af als het draait voor meer dan NUM seconden" + + #. 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" +@@ -578,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 "Gebruik: %s [-vy] [--ids=BUILD_IDS_FILE]\n[--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=GROOTTE]\n[-e, --exact=PAD[:PAD]...]\n\nInstalleert debuginfo voor alle build-ids getoond in BUILD_IDS_FILE\nin CACHEDIR, met gebruik van TMPDIR als tijdelijk gebied.\nOude bestanden in CACHEDIR worden verwijderd totdat het kleiner is dan GROOTE.\n\n-v Breedsprakig\n-y Niet-interactief, neem 'Ja' aan voor alle vragen\n--ids Standaard: build_ids\n--tmpdir Standaard: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-RANDOM_SUFFIX\n--cache Standaard: /var/cache/abrt-di\n--size_mb Standaard: 4096\n-e,--exact Download alleen gespecificeerde bestanden\n--repo Patroon te gebruiken voor het zoeken naar repos.\nStandaard: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -590,11 +605,11 @@ msgstr "Coredump refereert naar {0} debuginfo-bestanden, {1} ervan zijn niet ge + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} debuginfo-bestanden zijn niet geïnstalleerd" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Ontbrekend gevraagd bestand: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -766,73 +781,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nHoud logbestand FILE in de gaten + msgid "Don't run PROG if STRs aren't found" + msgstr "Voer PROG niet uit als STRs niet gevonden zijn" + +-#: ../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 "Er is een kernelprobleem opgetreden wegens een BIOS defect. Zulke problemen kunnen helaas niet opgelost worden met kernelonderhoud." + +-#: ../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 "Een kernelprobleem trad op, maar jouw hardware wordt niet ondersteund, daarom kunnen kernelmaintainers dit probleem niet repareren." + +-#: ../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 "Een kernelprobleem trad op, maar de kernel werd aangetast (flags:%s). Kernelmaintainers kunnen geen diagnose stellen bij aangetaste rapporten." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Aangetaste 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 "& [-vusoxm] [-d MAP]/[-D] [BESTAND]\n\nExtraheer oops uit BESTAND (of standaard input)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Print gevonden oops naar standaard 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 "Maak nieuwe probleem map aan in MAP voor elke gevonden 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 "Hetzelfde als -d DumpLocation, DumpLocation wordt gespecificeerd 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 "Sla de geextraheerde informatie op in PROBLEEM" + +-#: ../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 "Maak de probleemmap leesbaar voor iedereen" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Beperk het aanmaken van probleemmappen tot 1 per 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 "Print zoekstring(s) naar stdout en sluit af" + +-#: ../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 "Kan het probleem niet vernieuwen: meer dan een oops gevonden" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "In slaap voor %d seconden" +@@ -860,7 +874,6 @@ msgstr "De retrace-server kan niet gebruikt worden omdat de crash te groot is. 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 +@@ -1278,64 +1291,71 @@ msgstr "Socket-blokkeermodus instellen mislukte." + msgid "Failed to wrap TCP socket by SSL." + msgstr "TCP-socket wrappen met SSL mislukte." + +-#: ../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 "Cliënthandshake naar SSL socket aanzetten mislukte." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "Aanzetten van SSL3 mislukte." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "Aanzetten van TLS mislukte." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "URL instellen naar SSL-socket mislukte." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Kan niet verbinden met '%s'" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Instellen van certificaathook mislukte." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Instellen van handshake callback mislukte." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Herstellen van handshake mislukte." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Afmaken van SSL handshake mislukte: NSS fout %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Sluiten van SSL-socket mislukte." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Slecht gevormde HTTP-antwoord koptekst: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Ontvangen van data mislukte: NSS fout %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Slecht gevormde, afgehakte response." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Initialiseren van NSS mislukte" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Initialiseren van beveiligingsmodule mislukte" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Afsluiten van NSS mislukte." + +@@ -1426,43 +1446,43 @@ msgstr "Print de telling van de recente crashes" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" + +-#: ../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 "Toon alleen niet-gerapporteerde problemen" + + #. 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 "Toon gedetailleerd rapport" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Toon alleen de problemen die recenter zijn dan de gespecificeerde tijdstempel" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Toon alleen de problemen die ouder zijn dan de gespecificeerde tijdstempel" + +-#: ../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 "De automatisch-rapporteren functie is uitgezet. Overweeg om dit aan te zetten door\nals een gebruiker met root rechten 'abrt-auto-reporting enabled' uit te voeren.\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 "Tekst groter dan dit zal verkort getoond worden" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Geen probleemmap '%s' bekend" +diff --git a/po/nn.po b/po/nn.po +index fef92b1..33c8116 100644 +--- a/po/nn.po ++++ b/po/nn.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: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora/language/nn/)\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/no.po b/po/no.po +index 2950e8a..3a613be 100644 +--- a/po/no.po ++++ b/po/no.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: Norwegian (http://www.transifex.com/projects/p/fedora/language/no/)\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/nso.po b/po/nso.po +index 32cfd62..36f4a71 100644 +--- a/po/nso.po ++++ b/po/nso.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: Northern Sotho (http://www.transifex.com/projects/p/fedora/language/nso/)\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/or.po b/po/or.po +index 7866642..1d756ff 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -4,15 +4,14 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# Manoj Kumar Giri , 2011-2013 +-# Manoj Kumar Giri , 2013 ++# Manoj Kumar Giri , 2013-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 10:44+0000\n" ++"Last-Translator: Manoj Kumar Giri \n" + "Language-Team: Oriya (http://www.transifex.com/projects/p/fedora/language/or/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -28,177 +27,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 "NetworkManager ସହିତ DBus ଉପରେ ସଂଯୋଗ କରିପାରିବେ ନାହିଁ: %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 "ସବୁଦିନ ପାଇଁ ଏଡ଼ାଇ ଦିଅନ୍ତୁ" + + #. 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', ବିଜ୍ଞପ୍ତି ହୁଏତଃ ପରବର୍ତ୍ତୀ ଲଗଇନରେ ପୁଣି ଦୃଶ୍ୟମାନ ହେବ" + +-#: ../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 "ବିନ୍ୟାସକୁ ଖବର କରିବାରେ ସମସ୍ୟା" + +-#: ../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 "ବିଦାୟ ନିଅନ୍ତୁ" + +@@ -233,8 +243,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 ପାଇଁ ଲଗ" +@@ -336,12 +346,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" +@@ -351,32 +361,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 ରେ ଉଲ୍ଲେଖ ହୋଇଥିବା\nଡମ୍ପ ଅବସ୍ଥାନରେ ଖାଲିଥାଏ\n\nଯଦି UPLOAD_DIRECTORY ଦିଆଯାଇନଥାଏ, ତେବେ\nabrt.conf ରୁ WatchCrashdumpArchiveDir option ର ଏକ ମୂଲ୍ୟକୁ ବ୍ୟବହାର କରିଥାଏ" + +-#: ../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 +@@ -408,12 +418,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 " +@@ -421,7 +431,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' କୁ କାଢ଼ିବାରେ ବିଫଳ" +@@ -437,7 +447,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" +@@ -482,7 +491,7 @@ msgstr "& [-v] -d DIR\n\npython କ୍ରାସ ଡମ୍ପର UUID ଏବଂ 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" +@@ -490,21 +499,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 "" +@@ -523,7 +538,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" +@@ -578,7 +592,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-id ଗୁଡ଼ିକ ପାଇଁ ତୃଟିନିବାରଣ ସୂଚନାକୁ CACHEDIR ରେ ସ୍ଥାପନ କରିଥାଏ,\nTMPDIR କୁ ଅସ୍ଥାୟୀ ଷ୍ଟେଜିଙ୍ଗ ସ୍ଥାନ ଭାବରେ ବ୍ୟବହାର କରି।\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}" +@@ -590,11 +604,11 @@ msgstr "କୋରଡମ୍ପ ସନ୍ଦର୍ଭ {0} ତ୍ରୁଟିନି + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "ତୃଟି ନିବାରଣ ଫାଇଲଗୁଡ଼ିକର {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}" +@@ -749,7 +763,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" +@@ -766,76 +780,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 "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nଫାଇଲରୁ oops ବାହାର କରନ୍ତୁ (କିମ୍ବା ମାନକ ନିବେଶ)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "ମାନକ ଫଳାଫଳ ଉପରେ ମୁଦ୍ରଣୀ oopses ପାଇଛି" + + #. 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 ଡମ୍ପ ଅବସ୍ଥାନ ପରି ସମାନ, ଡମ୍ପ ଅବସ୍ଥାନକୁ 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 "" ++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 "" +@@ -860,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 +@@ -1111,7 +1123,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 +@@ -1278,64 +1290,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 "ହସ୍ତମିଳନକୁ ବାଧ୍ଯ କରିବାରେ ବିଫଳ: 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 କୁ ବନ୍ଦ କରିବାରେ ବିଫଳ।" + +@@ -1396,7 +1415,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]..." +@@ -1426,46 +1445,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 "ସ୍ୱୟଂ ଖବରକାରୀ ବିଶେଷତା ନିଷ୍କ୍ରିୟ ହୋଇଛି। ଦୟାକରି 'abrt-auto-reporting enabled' କୁ ନ୍ୟସ୍ତ କରି\nଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\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]..." +diff --git a/po/pa.po b/po/pa.po +index 47a0d03..fc02fa8 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -3,19 +3,16 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: ++# asaini , 2014 + # asaini , 2013 +-# asaini , 2013 +-# Jaswinder Singh , 2011-2012 +-# Jaswinder Singh , 2011-2012 +-# Jaswinder Singh , 2011-2012 + # Jiří Moskovčák , 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-12 05:19+0000\n" ++"Last-Translator: asaini \n" + "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora/language/pa/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -31,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 "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 "ਜਿਹੜੀ ਸੂਚਨਾ ਭੇਜੀ ਜਾਵੇਗੀ ਉਸ ਵਿੱਚ ਕੋਈ ਸੁਰੱਖਿਆ ਸੰਵੇਦਨਸ਼ੀਲ ਡਾਟਾ ਨਹੀਂ ਹੁੰਦਾ। ਇਸ ਲਈ ਇਹ ਜਰੂਰੀ ਨਹੀਂ ਹੈ ਕਿ ਅਗਲੀ ਵਾਰੀ ਤੁਹਾਨੂੰ ਖੇਚਲ ਦਿੱਤੀ ਜਾਵੇ ਅਤੇ ਤੁਹਾਡੇ ਵੱਲੋਂ ਕੋਈ ਅਗਲੀ ਕਾਰਵਾਈ ਚਾਹੀਦੀ ਹੋਵੇ। \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 ਤੇ ਕੁਨੈਕਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "ਨੈੱਟਵਰਕ-ਮੈਨੇਜਰ ਰਾਹੀਂ ਨੈੱਟਵਰਕ ਹਾਲਤ ਪਤਾ ਨਹੀਂ ਕਰ ਸਕਿਆ: %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 "Jaswinder Singh Phulewala " + +-#: ../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 "'%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 "ਸਿਸਟਮ Config 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 "ਨਿੱਕਲੋ" + +@@ -236,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 ਵਿੱਚ ਲਾਗ ਕਰੋ" +@@ -339,12 +347,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 "ਕੰਮ ਕਰਨ ਲਈ ਕੋਈ ਵਰਕਰ ਵਿਹਲਾ ਨਹੀਂ ਹੈ ਤੇ ਬਫਰ ਭਰਿਆ ਹੈ। '%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" +@@ -356,30 +364,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY ਵੇਖਦਾ ਹੈ ਅਤੇ ਅੰਦਰ ਆ ਰਹੇ ਆਰਕਾਇਵਾਂ ਨੂੰ abrt.conf ਵਿੱਚ ਦਰਸਾਏ ਗਏ \nDumpLocation ਵਿੱਚ ਖੋਲਦਾ ਹੈ\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 +@@ -411,12 +419,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 +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' ਨੂੰ ਕੱਢਣ ਵਿੱਚ ਅਸਫਲ" +@@ -440,7 +448,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" +@@ -509,6 +516,12 @@ msgstr "oops ਸੁਨੇਹੇ ਨੂੰ ਨਿਖੇੜ ਨਹੀਂ ਸਕਦ + 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 "ਕਰਨਲ ਲੌਗ ਸੰਕੇਤ ਕਰਦਾ ਹੈ ਕਿ ਹਾਰਡਵੇਅਰ ਗਲਤੀਆਂ ਖੋਜੀਆਂ ਗਈਆਂ।\nਇਹ ਸਾਫਟਵੇਅਰ ਸਮੱਸਿਆ ਉੱਕਾ ਹੀ ਨਹੀਂ ਹੋ ਸਕਦੀ।\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -526,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" +@@ -581,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\nTMPDIR ਨੂੰ ਆਰਜੀ ਸਟੇਜਿੰਗ ਖੇਤਰ ਵਜੋਂ ਵਰਤ ਕੇ,BUILD_IDS_FILE ਵਿੱਚ ਸੂਚੀਬੱਧ ਕੀਤੀਆਂ ਸਾਰੀਆਂ\nbuild-ids ਲਈ debuginfos ਨੂੰ CACHEDIR ਤੇ ਇੰਸਟਾਲ ਕਰਦਾ ਹੈ।\nCACHEDIR ਵਿੱਚਲੀਆਂ ਸਾਰੀਆਂ ਪੁਰਾਣੀਆਂ ਫਾਈਲਾਂ SIZE ਤੋਂ ਛੋਟੀਆਂ ਹੋ ਜਾਣ ਤੱਕ ਮਿਟਾਈਆਂ ਜਾਂਦੀਆਂ ਹਨ।\n\n -v Be verbose\n -y Noninteractive, ਸਾਰੇ ਸਵਾਲਾਂ ਲਈ 'ਹਾਂ' ਮੰਨ ਲਉ\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 +605,11 @@ msgstr "ਕੋਰਡੰਪ ਹਵਾਲਾ {0} debuginfo ਫਾਇਲਾਂ, ਉ + + #: ../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}" +@@ -769,73 +781,72 @@ 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 "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 "ਹਰੇਕ 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 "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 ਸੈਕਿੰਡਾਂ ਲਈ ਸੌਂ ਰਿਹਾ" +@@ -863,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 +@@ -1281,64 +1291,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 "URL ਨੂੰ SSL ਸਾਕਟ ਸੈੱਟ ਕਰਨ ਤੋਂ ਫੇਲ ਹੋਇਆ।" + +-#: ../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 ਹੁੰਗਾਰਾ header: '%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 ਨੂੰ ਬੰਦ ਕਰਨ ਵਿੱਚ ਫੇਲ" + +@@ -1429,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 [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 "ਸ੍ਵੈ-ਚਲਿਤ ਸੂਚਿਤ ਕਰਨ ਵਾਲਾ ਫੀਚਰ ਅਯੋਗ ਕੀਤਾ ਹੈ। ਕਿਰਪਾ ਕਰ ਕੇ ਇਸ ਨੂੰ 'abrt-auto-reporting enabled' ਨੂੰ\nਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\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 "ਇਸ ਤੋਂ ਵੱਡਾ ਪਾਠ ਸੰਖੇਪਿਤ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ਕੋਈ '%s' ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" +diff --git a/po/pl.po b/po/pl.po +index 51e5097..b138683 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -4,14 +4,14 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# Piotr Drąg , 2011-2013 ++# Piotr Drąg , 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 13:27+0000\n" ++"Last-Translator: Piotr Drąg \n" + "Language-Team: Polish (http://www.transifex.com/projects/p/fedora/language/pl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -27,177 +27,188 @@ msgstr "Narzędzie do automatycznego zgłaszania błędów" + msgid "ABRT notification applet" + msgstr "Aplet powiadomień 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 "Wysyłane zgłoszenie nie zawiera żadnych danych osobistych ani ważnych dla bezpieczeństwa. W związku z tym nie jest wymagane pytanie za każdym razem. \nWłączyć automatyczne wysyłanie anonimowych zgłoszeń awarii?" ++"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 "Wysyłane zgłoszenie nie zawiera żadnych danych osobistych ani ważnych dla bezpieczeństwa. W związku z tym nie jest wymagane pytanie za każdym razem.\n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "Włączyć automatyczne wysyłanie zgłoszeń awarii?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "Włączyć automatyczne wysyłanie anonimowych zgłoszeń awarii?" + + #. 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 "Nie można połączyć z menedżerem sieci przez magistralę D-Bus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nie można ustalić stanu sieci przez menedżera sieci: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Wykryto problem" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Wykryto problem w pakiecie %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 i dane diagnostyczne zostały wysłane" + +-#: ../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 "Nie można wykonać \"%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 "Nie można zamknąć powiadomienia: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Ostrzeżenie" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Aplet obszaru powiadamiania informujący użytkownika o problemach wykrytych przez program ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Piotr Drąg , 2009\nTomasz Chrzczonowicz , 2009" + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "Za_kończ" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Ukryj" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_O programie" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Wykryto problem" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Zawsze ignoruj" + + #. 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 "Otwórz" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "Problem został już zgłoszony" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Wystąpił problem" + + #. 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 "Zgłoś" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Wystąpił problem" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Zgłoszono problem" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Wystąpił nowy problem" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nie można wyświetlić powiadomienia: %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 "Nie można odczytać z kanału GIO: \"%s\"" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nie można ustawić kodowania na kanale 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 "Nie można włączyć trybu nieblokowania dla kanału GIO: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nie można zmienić właściciela \"%s\"" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nie można otworzyć katalogu do zapisania \"%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 "Otwarcie połączenia do menedżera sesji się nie powiodło: \"%s\". Powiadomienie może pojawić się ponownie po następnym logowaniu" + +-#: ../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] [KATALOG]...\n\nAplet powiadamiający użytkownika o nowych problemach wykrytych przez program ABRT\n" + +-#: ../src/configuration-gui/system-config-abrt.c:58 ++#: ../src/configuration-gui/system-config-abrt.c:75 ++msgid "_Close" ++msgstr "Za_mknij" ++ ++#: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "_Domyślne" + +-#: ../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 "Konfiguracja zgłaszania problemów" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "O systemowej konfiguracji programu ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "O programie" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Zakończ" + +@@ -232,8 +243,8 @@ msgstr "& [opcje]" + msgid "Use NUM as client uid" + msgstr "Używa NUMERU jako UID klienta" + +-#: ../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 "Przekazuje komunikaty do dziennika systemowego" +@@ -335,12 +346,12 @@ msgstr "Wykonuje ZDARZENIE w KATALOGU" + msgid "Communicate directly to the user" + msgstr "Komunikuje się bezpośrednio z użytkownikiem" + +-#: ../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 "Brak wolnych wątków i pełny bufor. Pomijanie archiwum \"%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" +@@ -352,30 +363,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w LICZBA] [-c MiB] [KATALOG_WYSYŁANIA]\n\n\nObserwuje KATALOG_WYSYŁANIA i rozpakowuje przychodzące archiwa do DumpLocation\nokreślonego w pliku abrt.conf\n\nJeśli nie podano KATALOGU_WYSYŁANIA, to używa wartości opcji\nWatchCrashdumpArchiveDir z pliku abrt.conf" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Deamizuj" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Liczba jednocześnie działających wątków. Domyślnie wynosi" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Maksymalny rozmiar pamięci podręcznej w MiB. Domyślnie wynosi" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Nieprawidłowa liczba parametrów" + + #: ../src/daemon/abrt-auto-reporting.c:138 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Nieznana wartość opcji: \"%s\"\n" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 +@@ -407,12 +418,12 @@ msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nie można uzyskać listy problemów 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 "Nie można utworzyć pliku tymczasowego \"%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 " +@@ -420,7 +431,7 @@ msgid "" + msgstr "Nie można zapisać do \"%s\". Problem \"%s\" nie zostanie usunięty z zignorowanych problemów \"%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 "Nie można zmienić nazwy \"%s\" na \"%s\". Usunięcie problemu \"%s\" się nie powiodło" +@@ -436,7 +447,6 @@ msgstr "& [opcje] -d KATALOG\n\nAnalizuje wyjątek w języku C/C++, tworzy sumę + #. * 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 "Nie można wypakować komunikatu oops: \"{0}\"" + msgid "Oops text extracted successfully" + msgstr "Pomyślnie wypakowano tekst awarii 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 "Dziennik jądra wskazuje na wykrycie błędów sprzętowych.\nPrawdopodobnie nie jest to problem oprogramowania.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -522,7 +538,6 @@ msgstr "Kończy działanie GDB, jeśli jest uruchomione dłużej niż NUM 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" +@@ -577,7 +592,7 @@ msgid "" + " -e,--exact Download only specified files\n" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" +-msgstr "" ++msgstr "Użycie: %s [-vy] [--ids=PLIK_IDENTYFIKATORÓW_BUDOWANIA]\n [--tmpdir=KATALOG_TYMCZASOWY] [--cache=KATALOG_PAMIĘCI_PODRĘCZNEJ[:KATALOG_DEBUGINFO1:KATALOG_DEBUGINFO2...]] [--size_mb=ROZMIAR]\n [-e, --exact=ŚCIEŻKA[:ŚCIEŻKA]...]\n\nInstaluje pakiety debuginfo dla wszystkich identyfikatorów budowania\nwymienionych w PLIKU_IDENTYFIKATORÓW_BUDOWANIA w KATALOGU_PAMIĘCI_PODRĘCZNEJ,\nużywając KATALOGU_TYMCZASOWEGO jako obszaru tymczasowej przechowalni.\nPoprzednie pliki w KATALOGU_PAMIĘCI_PODRĘCZNEJ zostaną usunięte, aby jego\nrozmiar był mniejszy niż ROZMIAR.\n\n -v Więcej komunikatów\n -y Nieinteraktywnie, przyjmuje \"Tak\" na wszystkie pytania\n --ids Domyślnie: identyfikatory_budowania\n --tmpdir Domyślnie: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-LOSOWY_PRZYROSTEK\n --cache Domyślnie: /var/cache/abrt-di\n --size_mb Domyślnie: 4096\n -e,--exact Pobiera tylko podane pliki\n --repo Wzorzec do użycia podczas wyszukiwania repozytoriów.\n Domyślnie: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -589,11 +604,11 @@ msgstr "Zrzut core odnosi się do plików debuginfo {0}, {1} z nich nie jest zai + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} plików debuginfo nie jest zainstalowanych" + + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Brak żądanego pliku: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -765,73 +780,72 @@ msgstr "& [-vs] [-F POTOK]... PLIKI PROGRAM [PARAMETRY]\n\nObserwuje PLIK dzienn + msgid "Don't run PROG if STRs aren't found" + msgstr "Bez wykonywania PROGRAMU, jeśli nie odnaleziono POTOKU" + +-#: ../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 "Wystąpił problem jądra z powodu uszkodzonego BIOS-u. Tego rodzaju problemy nie mogą zostać naprawione przez opiekunów jądra." + +-#: ../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 "Wystąpił problem jądra, ale sprzęt jest nieobsługiwany, więc opiekunowie jądra nie mogą go naprawić." + +-#: ../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 "Wystąpił problem jądra, ale obecne jądro jest zanieczyszczone (flagi: %s). Opiekunowie jądra nie są w stanie diagnozować zanieczyszczonych raportów." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Zanieczyszczone moduły: %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 KATALOG]/[-D] [PLIK]\n\nWydobywa awarię z PLIKU (lub standardowego wejścia)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Wyświetla odnalezione awarie w standardowym wyjściu" + + #. 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 "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii 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 "To samo, co -d DumpLocation, DumpLocation jest określone w pliku abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:279 ++#: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Zapisuje wydobytą informację w PROBLEMIE" + +-#: ../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 "Ustawia katalog problemu jako do odczytu dla każdego" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Przełącza tworzenie katalogów problemów na jeden na sekundę" + +-#: ../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 "Wyświetla wyszukiwane ciągi w standardowym wyjściu i kończy działanie" + +-#: ../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 "Nie można zaktualizować problemu: znaleziono więcej niż jedną awarię oops" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Usypianie na %d sekund" +@@ -859,7 +873,6 @@ msgstr "Nie można użyć serwera ponownego śledzenia, ponieważ awaria jest za + + #. 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 "Ustawienie trybu blokowania gniazda nie powiodło się." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Opakowanie gniazda TCP za pomocą SSL nie powiodło się." + +-#: ../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 "Włączenie powitania klienta do gniazda SSL nie powiodło się." + +-#: ../src/plugins/https-utils.c:223 ++#: ../src/plugins/https-utils.c:220 ++msgid "Failed to enable SSL3." ++msgstr "Włączenie SSL3 się nie powiodło." ++ ++#: ../src/plugins/https-utils.c:222 ++msgid "Failed to enable TLS." ++msgstr "Włączenie TLS się nie powiodło." ++ ++#: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Ustawienie adresu URL w gnieździe SSL nie powiodło się." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Nie można połączyć z \"%s\"" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Ustawienia haka certyfikatu nie powiodło się." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Ustawienie wywołania zwrotnego powitania nie powiodło się." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Przywrócenie powitania nie powiodło się." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Ukończenie powitania SSL się nie powiodło: błąd biblioteki NSS %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Zamknięcie gniazda SSL nie powiodło się." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Błędnie sformatowany nagłówek odpowiedzi 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 "Pobieranie danych nie powiodło się: błąd NSS %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Błędnie sformatowana, urwana odpowiedź." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Zainicjowanie biblioteki NSS nie powiodło się." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Zainicjowanie modułu zabezpieczeń nie powiodło się." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Zamknięcie biblioteki NSS nie powiodło się." + +@@ -1425,43 +1445,43 @@ msgstr "Wyświetla liczbę ostatnich awarii" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [opcje] [KATALOG]..." + +-#: ../src/cli/list.c:139 ++#: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Wyświetla listę niezgłoszonych problemów" + + #. 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 "Wyświetla szczegółowe zgłoszenie" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Wyświetla tylko problemy nowsze niż podany czas" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Wyświetla tylko problemy starsze niż podany czas" + +-#: ../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 "Funkcja automatycznego zgłaszania jest wyłączona. Proszę rozważyć włączenie jej przez wydanie polecenia\n\"abrt-auto-reporting enabled\" jako użytkownik z uprawnieniami roota\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [opcje] KATALOG..." + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "Tekst większy niż to będzie wyświetlany skrócony" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Katalog problemu \"%s\" nie istnieje" +diff --git a/po/pt.po b/po/pt.po +index 3b18adc..9ab6a9b 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -5,19 +5,20 @@ + # Translators: + # Bruno Martins , 2011 + # Jiří Moskovčák , 2011 ++# alfalb_mansil , 2014 + # manuelmarque , 2012 + # Miguel Sousa , 2011 + # nmartins , 2011 + # pmdaniel , 2013 + # Ricardo Pinto , 2012 +-# Rui Gouveia , 2011, 2012 ++# Rui Gouveia , 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-17 18:54+0000\n" ++"Last-Translator: alfalb_mansil \n" + "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora/language/pt/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -27,183 +28,194 @@ msgstr "" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "Ferramenta automática para reportar erros" ++msgstr "Ferramenta Automática para Comunicar Erros" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +-msgstr "Applet de notificação do ABRT" ++msgstr "Míni aplicação 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 "" ++"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 irá ser enviado não contém qualquer dado sensível de segurança . Por isso, não é necessário preocupar-se da próxima vez e requer qualquer ação futura por si. \n" ++ ++#: ../src/applet/applet.c:136 ++msgid "Do you want to enable automatically submitted crash reports?" ++msgstr "Deseja ativar a submissão automática de relatórios de crache?" ++ ++#: ../src/applet/applet.c:141 ++msgid "Do you want to enable automatically submitted anonymous crash reports?" ++msgstr "Deseja ativar a submissão automática anónima de relatórios de crache?" + + #. 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 "" ++msgstr "Não é possível conetar ao Gestor de Rede sob 'DBus': %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" ++msgstr "Não é possível determinar o estado da rede através do Gestor de Rede: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" +-msgstr "Um problema foi detetado" ++msgstr "Foi detetado 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 detetado 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 de 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 "Incapaz de executar '%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 "" ++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 "Applet da área de notificação que informa os utilizadores sobre os problemas detectados pela ABRT" ++msgstr "A míni aplicação da área de notificação que notifica os utilizadores sobre os problemas detetados pela ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" +-msgstr "Rui Gouveia " ++msgstr "Rui Gouveia / Manuela Silva " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" +-msgstr "" ++msgstr "_Sair" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" +-msgstr "Esconder" ++msgstr "Ocultar" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" +-msgstr "" ++msgstr "_Sobre o ..." + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" +-msgstr "Problema detectado" ++msgstr "Detetado um problema" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" +-msgstr "" ++msgstr "Ignorar para 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 "Abrir" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "O problema já foi comunicado" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" +-msgstr "" ++msgstr "Ocorreu um Problema Conhecido" + + #. 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 "Relatório" ++msgstr "Comunicar" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" +-msgstr "Ocorreu um problema" ++msgstr "Ocorreu um Problema" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" +-msgstr "" ++msgstr "Foi Comunicado um Problema" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" +-msgstr "" ++msgstr "Ocorreu um Novo Problema" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++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 "" ++msgstr "Não é possível ler 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 "" ++msgstr "Não é posssível definir a 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 "" ++msgstr "Não é possível ligar o modo 'não bloquear' 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 é possível tomar posse de '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "Não é possível abrir a diretoria para gravar '%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 "Não é possível abrir a conexão para o gestor de sessão: '%s', a notificação poderá reaparecer no próximo início de sessão" + +-#: ../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\nObjecto que notifica o utilizador quando novos problemas são detectados pelo ABRT\n" ++msgstr "& [-v] [DIR]...\n\nMíni aplicação que notifica o utilizador quando são detectados novos problemas 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 "" ++msgstr "_Predefiniçoes" + +-#: ../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 "Configuração da Comunicação de Problemas" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "Sobre o System Config ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "Sobre" ++msgstr "Sobre o ..." + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Sair" + +@@ -212,7 +224,7 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nQuestiona a base de dados de pacotes e grava o pacote e o nome do componente" ++msgstr "& [-v] [-c CONFFILE] -d DIR\n\nConsultar a base de dados do pacote e gravar o pacote e o nome do componente" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -223,11 +235,11 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n\nQuestiona a base de dados de pacotes e gr + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "Directório de problemas" ++msgstr "Diretoria dos Problemas" + + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" +-msgstr "Ficheiro de configuração" ++msgstr "Ficheiro de Configuração" + + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 +@@ -236,13 +248,13 @@ msgstr "& [opções]" + + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" +-msgstr "Utilizar NUM como uid do cliente" ++msgstr "Utilizar NUM como 'uid' do 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 "Registar no syslog" ++msgstr "Registar para syslog" + + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" +@@ -255,12 +267,12 @@ msgstr "Erro desconhecido" + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" +-msgstr "'%s' não é um directório de problema válido" ++msgstr "'%s' não é um diretoria de problemas válida" + + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" +-msgstr "" ++msgstr "'%s' elemento não pode ser modificado" + + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +@@ -271,7 +283,7 @@ msgstr "Não Autorizado" + + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" +-msgstr "" ++msgstr "Não é possível aceder ao problema para modificação" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +@@ -280,12 +292,12 @@ msgstr "" + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" +-msgstr "" ++msgstr "'%s' não é um nome de elemento válido" + + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "" ++msgstr "Não é possível obter o tamanho do '%s'" + + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" +@@ -294,23 +306,23 @@ msgstr "" + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" ++msgstr "Não é possível apagar o elemento '%s' da diretoria de problemas '%s'" + + #: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "O nome '%s' foi perdido, por favor verifique se outro serviço com o mesmo nome não está a correr.\n" ++msgstr "O nome '%s' foi perdido, por favor, verifique se outro serviço com o mesmo nome não está a ser executado.\n" + + #: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" +-msgstr "Sair depois de NUM segundos de inactividade" ++msgstr "Sair depois de NUM segundos de inatividade" + + #: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." +-msgstr "Este programa tem que ser executado como root." ++msgstr "Este programa tem que ser executado como 'root'." + + #: ../src/daemon/abrtd.c:451 + msgid "" +@@ -319,11 +331,11 @@ 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 "Os dados do problema estão incompletos. Isto, normalmente acontece quando um problema é detetado enquanto o computador é encerrado ou o utilizador está a fechar a sessão. Para poder fornecer relatórios preciosos do problema, o ABRT não irá permitir-lhe que submeta este problema. Se tiver algum tempo e desejar ajudar os programadores a resolverem este problema, por favor, contacte-os diretamente." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +-msgstr "Não enviar para segundo plano" ++msgstr "Não \"daemonize\"" + + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" +@@ -341,12 +353,12 @@ msgstr "Executa EVENT no 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" +@@ -358,21 +370,21 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + +-#: ../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 "" + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "" + + #: ../src/daemon/abrt-auto-reporting.c:81 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + + #: ../src/daemon/abrt-auto-reporting.c:113 + msgid "Invalid number of arguments" +@@ -413,12 +425,12 @@ msgstr "Não é possível obter dados do problema a partir do abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Não é possível obter a lista do problema 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 "" + +-#: ../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 +438,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 +454,6 @@ msgstr "& [opções] -d DIR\n\nAnalisa traçagem C/C++, gera 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" +@@ -511,6 +522,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 +545,6 @@ msgstr "Matar o gdb se este for executado 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" +@@ -771,73 +787,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nVerifique o ficheiro de log FILE + msgid "Don't run PROG if STRs aren't found" + msgstr "Não corra o PROG se STRs não forem encontradas" + +-#: ../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 "Ocorreu um problema com o kernel, mas o kernel foi contaminado (flags:%s). Os programadores do kernel não conseguem diagnosticar relatórios contaminados." + +-#: ../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 "Apresentar oopses encontrados na saída 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 "" + +-#: ../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 a -d DumpLocation, DumpLocation está especificado em 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 "Tornar o directório com problema visível a 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 "" + +-#: ../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 "Imprimir a(s) string(s) para o stdout e sair" + +-#: ../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 +880,6 @@ msgstr "O servidor de traçagem não pode ser utilizado porque o ficheiro de err + + #. 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 +1297,71 @@ msgstr "Falha ao definir o modo de bloqueio do socket." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Falha ao encapsular 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 "Falha ao activar a negociação cliente para socket 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 "Falha ao definir 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 "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Falha ao definir o gancho de certificado." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Falha ao definir a função de retorno da negociação." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Falha ao redefinir a negociaçã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 "" + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Falha ao fechar socket 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 "Falha na recepção de dados: erro NSS %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Resposta mal formatada." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Falha ao iniciar 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 segurança." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Falha ao desligar NSS." + +@@ -1431,43 +1452,43 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& lista [opções] [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 "Mostrar relatório detalhado" + +-#: ../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 [opções] 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/ro.po b/po/ro.po +index dde2c9c..ac887e0 100644 +--- a/po/ro.po ++++ b/po/ro.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: Romanian (http://www.transifex.com/projects/p/fedora/language/ro/)\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/ru.po b/po/ru.po +index 455d984..55799f5 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -8,21 +8,17 @@ + # i.gnatenko.brain , 2013 + # Jiří Moskovčák , 2011 + # Misha Shnurapet , 2011 +-# Misha Shnurapet , 2011-2012 + # Stanislav Darchinov , 2011 + # Stanislav Hanzhin , 2011 +-# Yulia , 2011-2012 +-# Yulia , 2012-2013 +-# Yulia , 2012 ++# Yulia , 2012,2014 + # Yuri Khabarov , 2011 +-# Игорь Горбунов , 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-11 23:28+0000\n" ++"Last-Translator: Yulia \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/fedora/language/ru/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -32,183 +28,194 @@ msgstr "" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "Автоматизированный регистратор ошибок" ++msgstr "Автоматическая регистрация ошибок" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + 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 "Не удалось подключиться к NetworkManager через DBus: %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 "Значок в области уведомления сообщает об обнаруженных сбоях" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Yulia \nMisha Shnurapet \nYuri Khabarov " + +-#: ../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 "Не удалось показать уведомление: %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\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 "О System Config 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 "Выход" + +@@ -243,8 +250,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 "Запись в журнал" +@@ -346,12 +353,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 "Полный буфер и нет свободных способов обработки. Пропускается архив «%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" +@@ -363,30 +370,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n\n\nСледит за указанным каналогом и распаковывает поступающие\nархивы в место, определенное в выражении DumpLocation в abrt.conf\n\nЕсли КАТАЛОГ не определен, будет выбрано значение \nWatchCrashdumpArchiveDir из abrt.conf" + +-#: ../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 "Максимальный размер кэша в МиБ. По умолчанию:" + + #: ../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 +@@ -418,12 +425,12 @@ msgstr "Не удается получить данные об ошибке от + 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 " +@@ -431,7 +438,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»." +@@ -447,7 +454,6 @@ msgstr "& [параметры] -d DIR\n\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" +@@ -516,6 +522,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 "kernel.log сообщает об ошибках оборудования.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -533,7 +545,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" +@@ -588,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 "Формат: %s [-vy] [--ids=BUILD_IDS_FILE]\n[--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n[-e, --exact=PATH[:PATH]...]\n\nУстанавливает отладочные пакеты для build-ids, \nперечисленных в файле BUILD_IDS_FILE, в каталог CACHEDIR, \nиспользуя TMPDIR в качестве временного каталога.\nСтарые файлы из CACHEDIR будут удаляться до тех пор, \nпока его размер не достигнет SIZE.\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}" +@@ -600,11 +611,11 @@ msgstr "Дамп содержит ссылки на файлы debuginfo (все + + #: ../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}" +@@ -776,73 +787,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 "" ++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\nИзвлекать данные о сбоях из FILE (или стандартного ввода)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Вывести найденные ошибки в stdout" + + #. 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 "Не удалось обновить проблему: найдено несколько ошибок" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Переход в режим ожидания на %d сек." +@@ -870,7 +880,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 +@@ -1121,7 +1130,7 @@ msgstr "Пароль задания на сервере" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" ++msgstr "abrt-retrace-client <операция> [параметры]\nОперации: create, status, backtrace, log, batch, exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1288,64 +1297,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 "Не удалось задать URL для сокета SSL." + +-#: ../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." + +@@ -1436,43 +1452,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 "Функции автоматического создания отчетов отключены. \nЧтобы их включить, в режиме root выполните: 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»." +diff --git a/po/ru_RU.po b/po/ru_RU.po +index 4fa084a..2583851 100644 +--- a/po/ru_RU.po ++++ b/po/ru_RU.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: Russian (Russia) (http://www.transifex.com/projects/p/fedora/language/ru_RU/)\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/si.po b/po/si.po +index fa4b27c..90c2394 100644 +--- a/po/si.po ++++ b/po/si.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: Sinhala (http://www.transifex.com/projects/p/fedora/language/si/)\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/sk.po b/po/sk.po +index 94d7339..0f0d7f9 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -4,17 +4,16 @@ + # + # Translators: + # Dominik , 2012 +-# Dušan Kazik , 2011-2013 + # Jiří Moskovčák , 2011 +-# Michal Hriň , 2011 ++# Michal Hriň , 2011 + # mond , 2013 + # Richard Marko , 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: Slovak (http://www.transifex.com/projects/p/fedora/language/sk/)\n" + "MIME-Version: 1.0\n" +@@ -31,177 +30,188 @@ msgstr "Nástroj na automatické hlásenie chýb" + msgid "ABRT notification applet" + msgstr "ABRT applet upozornení" + +-#: ../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 "Hlásenie, ktoré bude odoslané neobsahuje žiadne osobné citlivé údaje. Preto nie je nutné znova vás obťažovať a vyžadovať vašu aktivitu.\nChcete povoliť automatické odosielanie anonymných hlásení o chybách?" ++"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 "Nedá sa pripojiť k správcovi siete NetworkManager cez zbernicu DBus: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nedá sa zistiť stav siete cez správcu siete NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Bol zistený 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 "Bol zistený 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 "Nedá sa vykonať '%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 "Nedá sa zavrieť oznámenie: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Upozornenie" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Oblasť upozornení pre ABRT applet, ktorý upozorňuje uživateľov na zistené problémy" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "PrekladateliaMichal Hriň jmoskovc Dušan Kazik " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Ukončiť" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Skryť" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_O programe" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Zistený problém" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Ignorovať navždy" + + #. 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 "Otvoriť" + +-#: ../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 "Vyskytol sa známy 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ásiť" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Nastal Problém" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Problém bol nahlásený" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Vyskytol sa nový problém" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nedá sa zobraziť oznámenie: %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 "Nedá sa čítať 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 "Nedá sa nastaviť kódovanie na kanáli 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 "Nedá sa zapnúť neblokovaný režim pre kanál gio: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nedá sa prevziať vlastníctvo '%s'" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nedá sa otvoriť adresár na zapísanie „%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 "Zlyhalo otvorenie pripojenia k správcovi relácií: „%s“, upozornenie sa môže objaviť znovu pri ďalšom prihlásení" + +-#: ../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] [ADRESÁR]...\n\nAplet, ktorý upozorní používateľa na novo zistené problémy službou 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 "_Predvolené" + +-#: ../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 "Problém s hlásením konfigurácie" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "O systémovej konfigurácii ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "O programe" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Ukončiť" + +@@ -236,8 +246,8 @@ msgstr "& [voľby]" + msgid "Use NUM as client uid" + msgstr "Použiť NUM ako identifikátor používateľa pre klienta" + +-#: ../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 "Zalogovať do syslog" +@@ -339,12 +349,12 @@ msgstr "Spustiť EVENT v adresári DIR" + msgid "Communicate directly to the user" + msgstr "Komunikovať priamo s používateľom" + +-#: ../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" +@@ -356,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 "" + +@@ -411,12 +421,12 @@ msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Nedá sa získať zoznam problémov zo zbernice 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 "Nedá sa vytvoriť dočasný súbor „%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 "Nedá sa zapísať do „%s“. Problém „%s“ nebude odtránený z ignorovaných problémov „%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 "Nedá sa premenovať „%s“ na „%s“. Zlyhalo odstránenie problému „%s“" +@@ -440,7 +450,6 @@ msgstr "& [options] -d DIR\n\nAnalyzuje C/C++ backtrace, generuje hash duplikát + #. * 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" +@@ -509,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" +@@ -526,7 +541,6 @@ msgstr "Ukončiť gdb ak beží viac ako NUM sekúnd" + + #. 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" +@@ -769,73 +783,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nKontrolovať stav log súboru FI + msgid "Don't run PROG if STRs aren't found" + msgstr "Nespúšťať PROG ak STRs(reťazce) nie sú nájdené" + +-#: ../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 "Nastal problém s jadrom, avšak vaše jadro je kvôli predchádzajúcim problémom označené ako 'tainted' (príkaz: %s). Vývojári jadra nie sú schopný diagnostikovať takto označený problém." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Nefunkčné 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 "Vypísať nájdené oops na štandardný 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 "Vytvoriť nový adresár s problémom v DIR pre každý nájdený 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 "Rovnaké ako -d DumpLocation, DumpLocation je nastavené 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 "Nastaviť pracovný adresár prístupný pre všetkých" + +-#: ../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 "Vypísať vyhľadávací/ie reťazec/ce na stdout a skončiť" + +-#: ../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 "" +@@ -863,7 +876,6 @@ msgstr "Kvôli priveľkému objemu dát nie je možné použiť retrace server. + + #. 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 +@@ -1281,64 +1293,71 @@ msgstr "Zlyhalo získavanie režimu blokovania soketu." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Nepodarilo sa vytvoriť SSL vrstvu nad TCP socketom." + +-#: ../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 "Chyba pri nadväzovaní SSL spojenia." + +-#: ../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 "Zlyhalo nastavovanie URL na SSL sockete." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Nedá sa pripojiť k „%s“" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Zlyhalo prepojenie certifikátu." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Nie je možné nastaviť callback použitý pri nadviazaní spojenia." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Zlyhal reset spojenia." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Nepodarilo sa dokončiť SSL handskahe: NSS chyba %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Zlyhalo zatváranie SSL soketu." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Poškodená hlavička HTTP odpovede: „%s“" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Prijímanie údajov zlyhalo: NSS chyba %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Chybná čiastková odpoveď." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Zlyhala inicializácia NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Zlyhala inicializácia bezpečnostného modulu." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Nepodarilo sa ukončiť NSS." + +@@ -1429,43 +1448,43 @@ msgstr "Vypísať počet nedávnych pádov" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --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 "Zobraziť detailnú sprá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 [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/sl.po b/po/sl.po +index 5fbe8ac..7bdf9ca 100644 +--- a/po/sl.po ++++ b/po/sl.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: Slovenian (http://www.transifex.com/projects/p/fedora/language/sl/)\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/sq.po b/po/sq.po +index 89a5282..f80ebb8 100644 +--- a/po/sq.po ++++ b/po/sq.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 (http://www.transifex.com/projects/p/fedora/language/sq/)\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/sr.po b/po/sr.po +index 2d5f172..ad627dc 100644 +--- a/po/sr.po ++++ b/po/sr.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: Serbian (http://www.transifex.com/projects/p/fedora/language/sr/)\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/sr@latin.po b/po/sr@latin.po +index 992f676..aa07efe 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.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: Serbian (Latin) (http://www.transifex.com/projects/p/fedora/language/sr@latin/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,188 @@ msgstr "Alatka za samostalnu prijavu grеšaka" + msgid "ABRT notification applet" + msgstr "ABRT obavеštavajući programčić" + +-#: ../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 "Upozorеnjе" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Programčić iz obavеštajnе zonе koji obavеštava korisnikе o problеmima nađеnim pomoću ABRT-a" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "zaslugе-prеvodioca" + +-#: ../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 "Sakri" + +-#: ../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 "Prijava" + +-#: ../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/sv.po b/po/sv.po +index d54787a..2bf3b31 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -3,19 +3,17 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: ++# fedoratrans , 2009 + # Göran Uddeborg , 2011,2013 + # Jiří Moskovčák , 2011 +-# fedoratrans , 2009 +-# Warrakkk , 2013 +-# Ulrika Uddeborg , 2012 + # Ulrika Uddeborg , 2012 + # Warrakkk , 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: Swedish (http://www.transifex.com/projects/p/fedora/language/sv/)\n" + "MIME-Version: 1.0\n" +@@ -32,177 +30,188 @@ msgstr "Automatiskt felrapporteringsverktyg" + msgid "ABRT notification applet" + msgstr "ABRT notifieringsapplet" + +-#: ../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 "Rapporten som sänds innehåller ingen känslig information. Därför är det inte nödvändigt att störa dig nästa gång och kräva ytterligare ektivitet.\nVill du aktivera automatiska anonyma kraschrapporter?" ++"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 "Kan inte ansluta till 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 "Kan inte bestämma nätverksstatus via NetworkManager: %s" + +-#: ../src/applet/applet.c:345 ++#: ../src/applet/applet.c:386 + msgid "A problem has been detected" + msgstr "Ett problem har upptäckts" + +-#: ../src/applet/applet.c:347 ++#: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Ett problem i paketet %s har upptäckts" + +-#: ../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 "Det går inte att köra ”%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 "Kan inte stänga notifikation: %s" + +-#: ../src/applet/applet.c:693 ../src/applet/applet.c:695 ++#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 + msgid "Warning" + msgstr "Varning" + +-#: ../src/applet/applet.c:743 ++#: ../src/applet/applet.c:788 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Panelprogram för notifieringsområdet för att notifiera användaren om saker som upptäckts av ABRT" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" + msgstr "Magnus Larsson \nGöran Uddeborg " + +-#: ../src/applet/applet.c:767 ++#: ../src/applet/applet.c:812 + msgid "_Quit" + msgstr "_Avsluta" + +-#: ../src/applet/applet.c:769 ++#: ../src/applet/applet.c:814 + msgid "Hide" + msgstr "Dölj" + +-#: ../src/applet/applet.c:771 ++#: ../src/applet/applet.c:816 + msgid "_About" + msgstr "_Om" + +-#: ../src/applet/applet.c:839 ++#: ../src/applet/applet.c:884 + msgid "Problem detected" + msgstr "Problem upptäckt" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" + msgstr "Ignorera alltid" + + #. 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 "Öppna" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "The Problem has already been Reported" + msgstr "Problemet har redan rapporterats" + +-#: ../src/applet/applet.c:906 ++#: ../src/applet/applet.c:950 + msgid "A Known Problem has Occurred" + msgstr "Ett känt problem har uppstått" + + #. 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" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" + msgstr "Ett problem har uppstått" + +-#: ../src/applet/applet.c:956 ++#: ../src/applet/applet.c:1000 + msgid "A Problem has been Reported" + msgstr "Ett problem har rapporterats" + +-#: ../src/applet/applet.c:964 ++#: ../src/applet/applet.c:1008 + msgid "A New Problem has Occurred" + msgstr "Ett nytt problem har uppstått" + +-#: ../src/applet/applet.c:975 ++#: ../src/applet/applet.c:1018 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan inte visa notifikation: %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 "Kan inte läsa från gio-kanal: '%s'" + +-#: ../src/applet/applet.c:1089 ++#: ../src/applet/applet.c:1136 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan inte sätta kodning på gio-kanal: %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 "Kan inte slå på ej blockerande läge för gio-kanal: %s" + +-#: ../src/applet/applet.c:1125 ++#: ../src/applet/applet.c:1172 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan inte ta över ägandet av ”%s”" + +-#: ../src/applet/applet.c:1135 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan inte öppna katalog för att skriva '%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 "Det gick inte att koppla till sessionshanteraren: '%s', notis kan komma att visas igen vid nästa inloggning" + +-#: ../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] [KAT]...\n\nPanelprogram som meddelar användare när nya problem upptäcks av 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 "_Standard" + +-#: ../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 "Problemrapporteringskonfiguration" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Om Systemkonfiguration ABRT" + +-#: ../src/configuration-gui/main.c:97 ++#: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Om" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Avsluta" + +@@ -237,8 +246,8 @@ msgstr "& [flaggor]" + msgid "Use NUM as client uid" + msgstr "Använd NUM som 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 "Logga till syslog" +@@ -340,12 +349,12 @@ msgstr "Kör HÄNDELSE på KAT" + msgid "Communicate directly to the user" + msgstr "Kommunicera direkt med användaren" + +-#: ../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 "Inga fria arbetare och full buffert. Utelämnar arkivet ”%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" +@@ -357,15 +366,15 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w ANT] [-c MiB] [SÄNDNINGSKATALOG]\n\n\nBevakar SÄNDNINGSKATALOG och packar upp inkommande arkiv till DumpLocation\nangiven i abrt.conf\n\nOm SÄNDNINGSKATALOG inte anges används ett värde på alternativet\nWatchCrashdumpArchiveDir från abrt.conf" + +-#: ../src/daemon/abrt-upload-watch.c:298 ++#: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Bli demon" + +-#: ../src/daemon/abrt-upload-watch.c:299 ++#: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "Antal samtidiga arbetare. Standard är " + +-#: ../src/daemon/abrt-upload-watch.c:300 ++#: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximal cachestorlek i MiB. Standard är " + +@@ -412,12 +421,12 @@ msgstr "Kan inte hämta problemdata från abrt-dbus: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Kan inte hämta problemlistan från 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 "Det går inte att skapa temporärfilen '%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 " +@@ -425,7 +434,7 @@ msgid "" + msgstr "Det går inte skriva till '%s'. Problem '%s' kommer inte att tas bort från ignorerade problem '%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 "Det går inte att döpa om '%s' till '%s'. Borttagning av problem '%s' misslyckades" +@@ -441,7 +450,6 @@ msgstr "& [flaggor] -d KAT\n\nAnalyserar C/C++-stackspår, genererar duplikatkon + #. * 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" +@@ -510,6 +518,12 @@ msgstr "Kan inte extrahera oops-meddelandet: ”{0}”" + msgid "Oops text extracted successfully" + msgstr "Oops-texten extraherad" + ++#: ../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" +@@ -527,7 +541,6 @@ msgstr "Döda gdb om den kör i mer än ANT 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" +@@ -770,73 +783,72 @@ msgstr "& [-vs] [-F STR]… FIL PROG [ARG]\n\nBetrakta loggfilen FIL, kör PROG + msgid "Don't run PROG if STRs aren't found" + msgstr "Kör inte PROG om det inte finns några 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 "Ett problem i kärnan inträffade, men din kärna har fläckats (flaggor:%s). De som underhåller kärnan kan inte diagnostisera fläckade rapporter." + +-#: ../src/plugins/abrt-dump-oops.c:152 ++#: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "Förorenade moduler: %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 KAT]/[-D] [FIL]\n\nExtrahera en oops från FIL (eller standard in)" + +-#: ../src/plugins/abrt-dump-oops.c:273 ++#: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Skriv ut hittade oops:ar på standard ut" + + #. 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 "Skapa ny problemkatalog i KAT för varje oops som hittas" + +-#: ../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 "Samma som -d DumpPlats, DumpPlats anges 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 "Spara den extraherade information i 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 "Gör problemkatalogen läsbar för alla" + +-#: ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Begränsa skapandet av problemkataloger till 1 per sekund" + +-#: ../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 "Skriv söksträngar till standard ut och avsluta" + +-#: ../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 "Kan inte uppdatera problemet: hittade mer än en oops" + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Sover i %d sekunder" +@@ -864,7 +876,6 @@ msgstr "Spårservern kan inte användas för att kraschen är för stor. Förs + + #. 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 +@@ -1282,64 +1293,71 @@ msgstr "Misslyckades att sätta uttag i blockerande läge." + msgid "Failed to wrap TCP socket by SSL." + msgstr "Misslyckades att slå in TCP-uttag med 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 "Misslyckades att aktivera klienthandskakning till SSL-uttag." + +-#: ../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 "Misslyckades att ställa in URL till SSL-uttag." + +-#: ../src/plugins/https-utils.c:232 ++#: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Kan inte ansluta till '%s'" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Misslyckades att sätta en certifikatshake." + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Misslyckades att sätta återanrop för handskakning." + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Misslyckades att återställa handskakningen." + +-#: ../src/plugins/https-utils.c:257 ++#: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "Det gick inte att slutföra SSL-handskakning: NSS-fel %d." + +-#: ../src/plugins/https-utils.c:266 ++#: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Misslyckades att stänga ett SSL-uttag." + +-#: ../src/plugins/https-utils.c:331 ++#: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Felformaterad HTTPsvarsheader: '%s'" + +-#: ../src/plugins/https-utils.c:368 ++#: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Mottagande av data misslyckades: NSS-fel %d." + +-#: ../src/plugins/https-utils.c:397 ++#: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Felformaterat styckat svar." + +-#: ../src/plugins/https-utils.c:422 ++#: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Misslyckades att initiera NSS." + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Misslyckades att initiera säkerhetsmodulen." + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Misslyckades att stänga ner NSS." + +@@ -1430,43 +1448,43 @@ msgstr "Visa antalet nyliga krascher" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [flaggor] [KAT]…" + +-#: ../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 "Visa detaljerad rapport" + +-#: ../src/cli/list.c:142 ++#: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "Visa bara problem nyare än angivna tidsstämpel" + +-#: ../src/cli/list.c:143 ++#: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "Visa bara problem äldre än angivna tidsstämpel" + +-#: ../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 [flaggor] KAT…" + +-#: ../src/cli/list.c:195 ++#: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "Text längre än detta kommer visas förkortad" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Problemkatalogen finns inte ”%s”" +diff --git a/po/ta.po b/po/ta.po +index 406fa82..1bfaf1a 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -4,19 +4,16 @@ + # + # Translators: + # A , 2012 +-# Felix I , 2011-2012 + # I Felix , 2011 + # Jiří Moskovčák , 2011 +-# shkumar , 2012-2013 +-# shkumar , 2012 +-# shkumar , 2012 ++# shkumar , 2012,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 12:59+0000\n" ++"Last-Translator: shkumar \n" + "Language-Team: Tamil (http://www.transifex.com/projects/p/fedora/language/ta/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -32,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 "shkumar@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 "சிக்கல் ஏற்கனவே அறிக்கையிடப்பட்டது" + +-#: ../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\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 "அமைவாக்கத்தை அறிக்கையிடுவதில் சிக்கல்" + +-#: ../src/configuration-gui/main.c:67 ++#: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "System Config 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 "வெளியேறு" + +@@ -237,8 +245,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 க்கு பதியவும்" +@@ -340,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 "கட்டற்ற ஒர்க்கர்கள் இல்லை, முழு பஃபர். காப்பகம் '%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" +@@ -357,30 +365,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + 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 "டெமனாக்கம் செய்" + +-#: ../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 +@@ -412,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 " +@@ -425,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' ஐ நீக்குவது தோல்வியடைந்தது" +@@ -441,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" +@@ -510,6 +517,12 @@ msgstr "oops செய்தியை பிரித்தெடுக்க + 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 "கெர்னல் பதிவு வன்பொருள் பிழைகள் கண்டறியப்பட்டதாகக் குறிக்கிறது.\nஅநேகமாக இது மென்பொருள் தொடர்பான பிரச்சனையாக இருக்காது.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -527,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" +@@ -582,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 இல் பட்டியலிடப்பட்டுள்ள அனைத்து பில்ட் ஐடிகளுக்கும் வழுநீக்கல் தகவல்களை\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}" +@@ -594,11 +606,11 @@ msgstr "கோர்டம்ப் {0} வழுநீக்கல் தகவ + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "வழுநீக்கக் கோப்புகளில் {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}" +@@ -770,73 +782,72 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nFILE என்ற பதிவ + 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 "& [-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 "ஒரு வினாடிக்கு த்ராட்டில் சிக்கல் கோப்பக உருவாக்கம் 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 வினாடிகளுக்கு தூங்குகிறது" +@@ -864,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 +@@ -1282,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 ஐ பணிநிறுத்த முடியவில்லை." + +@@ -1430,43 +1447,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 "" ++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 அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \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 "இதை விட பெரிய உரை அப்ரிட்ஜ் செய்யப்பட்டு காண்பிக்கப்படும்" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "இப்படி ஒரு சிக்கல் கோப்பகம் இல்லை '%s'" +diff --git a/po/ta_IN.po b/po/ta_IN.po +index 284b659..70abea1 100644 +--- a/po/ta_IN.po ++++ b/po/ta_IN.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: Tamil (India) (http://www.transifex.com/projects/p/fedora/language/ta_IN/)\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/te.po b/po/te.po +index c77569e..48bf03b 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -4,20 +4,16 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# Krishnababu Krothapalli , 2011-2012 +-# Krishnababu Krothapalli , 2011-2013 +-# Krishnababu Krothapalli , 2013 ++# Krishnababu Krothapalli , 2013-2014 + # sudheesh001 , 2013 +-# sudheesh001 , 2013 +-# ప్రవీణ్ ఇళ్ళ , 2011 + # ప్రవీణ్ ఇళ్ళ , 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-17 11:01+0000\n" ++"Last-Translator: Krishnababu Krothapalli \n" + "Language-Team: Telugu (http://www.transifex.com/projects/p/fedora/language/te/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -33,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 నందు నెట్వర్కుమేనేజర్‌ను అనుసంధానించలేదు: %s" + +-#: ../src/applet/applet.c:226 ++#: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "నెట్వర్కుమేనేజర్ ద్వారా నెట్వర్కు స్థితిని నిర్ణయించలేదు: %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 "కృష్ణబాబు క్రొత్తపల్లి 2009,2010." + +-#: ../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', తరువాతి లాగిన్ పైన ప్రకటన తిరిగికనిపించవచ్చు" + +-#: ../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 "ఆకృతీకరణను నివేదించుటలో సమస్య" + +-#: ../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 "నిష్క్రమించు" + +@@ -238,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 "సిస్‌లాగ్‌కు లాగ్" +@@ -341,12 +348,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 "" ++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" +@@ -356,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 పర్యవేక్షిస్తోంది మరియు లోనికివచ్చు ఆర్కైవ్లు డంప్‌స్థానమునకు అన్‌పాక్ చేయబడెను.\nabrt.conf నందు తెలుపబడెను\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 +@@ -413,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 " +@@ -426,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' సమస్య తొలగించడానికి విఫలమైంది" +@@ -442,7 +449,6 @@ msgstr "& [options] -d DIR\n\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" +@@ -487,7 +493,7 @@ msgstr "& [-v] -d DIR\n\nపైథాన్ క్రాష్ డంప్స + + #: ../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" +@@ -495,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 "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 "" +@@ -528,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" +@@ -583,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 నందు జాబితా చేసివున్న అన్ని బుల్డ్-ఐడిల కొరకు డీబగ్‌సమాచారాలను\nCACHEDIR కు సంస్థాపించును, దీనికొరకు TMPDIR ను తాత్కాలిక స్టేజింగ్ ప్రాంతంగా ఉపయోగించును.\nSIZE కన్నా తక్కువ అయ్యేంతవరకు CACHEDIR నందలి పాత ఫైళ్ళు తొలగించబడను .\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}" +@@ -595,11 +606,11 @@ msgstr "కోర్‌డంప్ {0} డీబగ్‌యిన్ఫో ఫ + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "డీబగ్‌సమాచార ఫైళ్ళలో {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}" +@@ -754,7 +765,7 @@ msgstr "ఎక్సుప్లాయిటబుల్ రేటింగ్ ( + + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "ప్రస్తుత సూచన:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -771,76 +782,75 @@ msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nలాగ్ ఫైలు చూ + 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 "& [-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 "కనుగొన్న oopses ను ప్రామాణిక అవుట్పుట్‌పై ముద్రించు" + + #. 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 "డైరెక్టరీ సృష్టించుటలో సమస్యను ఒక్కో క్షణానికి 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 "" +@@ -865,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 +@@ -1116,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 +@@ -1283,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 మూసివేతకు విఫలమైంది." + +@@ -1401,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]..." +@@ -1431,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 "స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. 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]..." +diff --git a/po/tg.po b/po/tg.po +index d288f0a..d3ebe4e 100644 +--- a/po/tg.po ++++ b/po/tg.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: Tajik (http://www.transifex.com/projects/p/fedora/language/tg/)\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/th.po b/po/th.po +index 9bc0f93..045d65a 100644 +--- a/po/th.po ++++ b/po/th.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: Thai (http://www.transifex.com/projects/p/fedora/language/th/)\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/tl.po b/po/tl.po +index 9b4337b..718c9fb 100644 +--- a/po/tl.po ++++ b/po/tl.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: Tagalog (http://www.transifex.com/projects/p/fedora/language/tl/)\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/tr.po b/po/tr.po +index 0371d24..4f966fb 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -3,18 +3,12 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Hasan Alp İNAN , 2011 +-# Irmak Bıçakçıgil , 2013 +-# M. Fatih ULUÇAM <>, 2012 +-# Muhammet Kara , 2011 +-# Onuralp SEZER , 2012 +-# Onur Baysan , 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: Turkish (http://www.transifex.com/projects/p/fedora/language/tr/)\n" + "MIME-Version: 1.0\n" +@@ -25,185 +19,196 @@ msgstr "" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "Otomatik Hata Bildirim Aracı" ++msgstr "" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +-msgstr "ABRT bildirim uygulaması" ++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 "Bir sorun tespit edildi" ++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' çalıştırılamıyor" ++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 "Bildirim kapatılamadı: %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 "Uyarı" ++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 tarafından tespit edilen sorunları kullanıcılara haber veren bildirim alanı uygulamacığı" ++msgstr "" + +-#: ../src/applet/applet.c:759 ++#: ../src/applet/applet.c:804 + msgid "translator-credits" +-msgstr "Hasan Alp İNAN , Onur BAYSAN" ++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 "Gizle" ++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 "Problem tespit edildi" ++msgstr "" + +-#: ../src/applet/applet.c:889 ++#: ../src/applet/applet.c:934 + msgid "Ignore forever" +-msgstr "Tamamen yoksay" ++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 "Aç" ++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 "Rapor" ++msgstr "" + +-#: ../src/applet/applet.c:930 ++#: ../src/applet/applet.c:974 + msgid "A Problem has Occurred" +-msgstr "Bir problem meydana geldi" ++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 "Hakkında" ++msgstr "" + +-#: ../src/configuration-gui/main.c:98 ++#: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "Çıkış" ++msgstr "" + + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" +@@ -221,34 +226,34 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "Dİzin problemi" ++msgstr "" + + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" +-msgstr "Yapılandırma dosyası" ++msgstr "" + + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" +-msgstr "& [seçenekler]" ++msgstr "" + + #: ../src/daemon/abrt-server.c:797 + 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 "Sistem günlüğüne kaydet" ++msgstr "" + + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" +-msgstr "Program adlarını günlüğe ekle" ++msgstr "" + + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" +-msgstr "Bilinmeyen hata" ++msgstr "" + + #: ../src/dbus/abrt-dbus.c:188 + #, c-format +@@ -321,11 +326,11 @@ msgstr "" + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +-msgstr "Daemonize etme" ++msgstr "" + + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" +-msgstr "Syslogları -d parametresi ile kullanın" ++msgstr "" + + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." +@@ -339,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" +@@ -356,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 "" + +@@ -384,7 +389,7 @@ msgstr "" + #. Let user know what's going on + #: ../src/lib/hooklib.c:251 + msgid "Generating backtrace" +-msgstr "Geri izleme üretiliyor" ++msgstr "" + + #: ../src/lib/problem_api_dbus.c:42 + #, c-format +@@ -411,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 " +@@ -424,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 "" +@@ -440,11 +445,10 @@ 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" +-msgstr "%s için geri izleme ayrıştırması başarısız oldu" ++msgstr "" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +@@ -489,7 +493,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:56 + msgid "File {0} doesn't exist" +-msgstr "{0} dosyası mevcut değil" ++msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:59 + msgid "Extracting the oops text from core" +@@ -509,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" +@@ -518,19 +528,18 @@ msgstr "" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "Ek hata ayıklama bilgisi dizinleri" ++msgstr "" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "gdb NUM saniyeden fazla süredir çalışıyorsa sonlandır" ++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" +-msgstr "Geri izleme oluşturuldu ve kaydedildi, %u bayt" ++msgstr "" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -555,11 +564,11 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "Hata: %s" ++msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "Kullanıcı komutuyla çıkılıyor" ++msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format +@@ -585,7 +594,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +-msgstr "{0}: {1} açılmıyor" ++msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +@@ -638,7 +647,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "Bu dizini koru" ++msgstr "" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -769,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 "Standart çıktı üzerinde bulunan oops ları yazdır" ++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 "" +@@ -863,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 +@@ -876,7 +883,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:832 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "%d uzunluğundaki HTTP başlığının gönderimi başarısız: NSS hata %d" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -889,7 +896,7 @@ msgstr "%d uzunluğundaki HTTP başlığının gönderimi başarısız: NSS hata + msgid "" + "Unexpected HTTP response from server: %d\n" + "%s" +-msgstr "Sunucudan beklenmeyen HTTP cevabı: %d\n\n%s" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -898,7 +905,7 @@ msgstr "Sunucudan beklenmeyen HTTP cevabı: %d\n\n%s" + #: ../src/plugins/abrt-retrace-client.c:982 + #: ../src/plugins/abrt-retrace-client.c:1052 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "Sunucudan geçersiz cevap: kayıp HTTP mesaj gövdesi " ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format +@@ -909,15 +916,15 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "Sunucu ayarları sorgulanıyor." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "Sunucu tamamen dolu. Daha sonra tekrar deneyin." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +-msgstr "Sunucu isteğinizi reddetti." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 +@@ -930,20 +937,20 @@ msgstr "" + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Dosya boyutu %lld byte, sunucu ancak %lld byte ve altındaki dosyaları kabul edebilir." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +-msgstr "Sunucu sıkıştırılmış-xz tarball'ları desteklemiyor." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "'%s' sürümü geri izleme sunucusu tarafından desteklenmiyor. " ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." +-msgstr "Sunucu, talebinizi değerlendiremiyor." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." +@@ -951,14 +958,14 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" +-msgstr "Karşıya yüklemek için bir arşiv hazırlanıyor" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:616 + #, c-format + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Arşiv boyutu %lld byte, sunucu ancak %lld byte ve altındaki arşiv dosyalarını kabul edebilir." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -967,35 +974,35 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" +-msgstr "Kullanıcı tarafından iptal edildi" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:673 + #, c-format + msgid "Uploading %d megabytes\n" +-msgstr "%d megabytes yükleniyor\n" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:675 + #, c-format + msgid "Uploading %lld bytes\n" +-msgstr "Yüklenen %lld byte \n" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" +-msgstr "Yükleniyor '%d%%\n" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" +-msgstr "Borudan okuma başarısız oldu" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "Veri gönderme başarısız: NSS hatası %d (%s): %s" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" +-msgstr "Yükleme başarılı" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" +@@ -1007,44 +1014,44 @@ msgstr "" + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Arşiv, zararlı dosyalar(symlinks gibi) içeriyor ve bundan dolayı işlenemez." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "Sunucudan geçersiz cevap: X-Task-Id kayıp" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "Sunucudan geçersiz cevap: X-Task-Password kayıp" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" +-msgstr "Geri izleme işi başladı." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format + msgid "" + "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Görev Id: %d\n\nGörev Şifresi: %s\n" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "Sunucudan geçersiz cevap: X-Task-Status kayıp" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format + msgid "" + "Task Status: %s\n" + "%s\n" +-msgstr "Görev Durumu: %s\n\n%s\n" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 + #: ../src/plugins/abrt-retrace-client.c:1043 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d." +-msgstr "%d uzunluğunda HTTP başlığı gönderimi başarısız: NSS hatası %d." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" +@@ -1054,11 +1061,11 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +-msgstr "dökümden sys dökümüne" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" +-msgstr "Güvensiz geri izleme sunucu bağlantısına izin ver." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" +@@ -1068,19 +1075,19 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +-msgstr "Geri" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" +-msgstr "Geri izleme sunucu portu" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" +-msgstr "(hata ayıklama) alınan HTTP başlıklarını göster" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" +-msgstr "Yaratma ve toplu işlemler için" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" +@@ -1088,11 +1095,11 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" +-msgstr "coredump tan veri oku" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" +-msgstr "Sıradaki işlemleri erteleme" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +@@ -1100,15 +1107,15 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +-msgstr "Durum, geri izleme ve günlük işlemleri için" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" +-msgstr "sunucudaki görevin id si" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" +-msgstr "sunucudaki görevin şifresi" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" +@@ -1126,27 +1133,27 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1310 + #: ../src/plugins/abrt-retrace-client.c:1318 + msgid "Task id is needed." +-msgstr "Görev ID si gerekli" ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1296 + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 + #: ../src/plugins/abrt-retrace-client.c:1320 + msgid "Task password is needed." +-msgstr "Görev şifresi gerekli." ++msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." +-msgstr "Bilinmeyen işlem: %s" ++msgstr "" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +-msgstr "Yerel GNU Hata Ayıklayıcısı" ++msgstr "" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "debuginfo paketlerini indir ve GDB kullanarak yerelde geri izleme üret" ++msgstr "" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" +@@ -1157,7 +1164,7 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "Çekirdek dökümünü uzak geri besleme sunucusuna analiz için gönder" ++msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +@@ -1171,17 +1178,17 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" +-msgstr "Tekrar izlenecek sunucu URL" ++msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" +-msgstr "Tekrar izlenecek sunucunun adresi" ++msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" +-msgstr "Güvensiz" ++msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 +@@ -1194,7 +1201,7 @@ msgid "" + "Write \"insecure\" to allow insecure connection <a " + "href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" + " >(warning)</a>" +-msgstr "Güvensiz bağlantıya izin vermek için \"güvensiz\" yaz <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1202,13 +1209,13 @@ msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "~/.xsession-errors dosyasındaki ilgili satırları kaydet" ++msgstr "" + + #: ../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 dosyasını tarar ve çalıştırılabilir dosya isimleri içeren satırları kaydeder. Sonuç 'xsession_errors' element olarak kaydedilir." ++msgstr "" + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1231,12 +1238,12 @@ msgstr "" + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "Sağlayıcı sertifikası geçersiz: '%s'." ++msgstr "" + + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "Sertifika güvenilmeyen biri tarafından imzalandı: '%s'" ++msgstr "" + + #: ../src/plugins/https-utils.c:103 + #, c-format +@@ -1245,17 +1252,17 @@ msgstr "" + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +-msgstr "Uzak sertifikanın süresi dolmuş." ++msgstr "" + + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "Sertifika sağlayıcı tanımlanamadı: '%s'." ++msgstr "" + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "Kötü sertifika alındı. Konu '%s', sertifikayı sağlayan '%s'" ++msgstr "" + + #: ../src/plugins/https-utils.c:149 + #, c-format +@@ -1275,72 +1282,79 @@ msgstr "" + + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "Soketin bloklama modu ayarı başarısız" ++msgstr "" + + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "TCP soketinin SSL tarafından sarmalanması başarısız" ++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 "'%s' 'e bağlanamadı" ++msgstr "" + +-#: ../src/plugins/https-utils.c:240 ++#: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "Sertifika ekleme başarısız oldu." ++msgstr "" + +-#: ../src/plugins/https-utils.c:246 ++#: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "Geri resetleme ayarı başarısız oldu." ++msgstr "" + +-#: ../src/plugins/https-utils.c:250 ++#: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "Resetleme başarısız oldu" ++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 soketinin kapatılması başarısız." ++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 "Alınan veri başarısız: NSS hatası %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 "NSS ilklendirme başarısız" ++msgstr "" + +-#: ../src/plugins/https-utils.c:428 ++#: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "Güvenlik modülünün ilklendirilmesi başarısız" ++msgstr "" + +-#: ../src/plugins/https-utils.c:443 ++#: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "NSS in kapatılması başarısız" ++msgstr "" + + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" +@@ -1429,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 "Detaylı raporu göster" ++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 "" +@@ -1506,12 +1520,12 @@ msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +-msgstr "VM çekirdeğini çözümle" ++msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "kernel debuginfo paketlerini kur , kernel günlüğü ve oops mesajı üret" ++msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" +@@ -1521,17 +1535,17 @@ msgstr "" + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +-msgstr "GConf yapılandırması toplanıyor" ++msgstr "" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "Uygulamanın GConf dizinindeki yapılandırmayı kaydet" ++msgstr "" + + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr " gconftool-2 --recursive-list /apps/executable 'ı çalıştır ve onu 'gconf_subtree' elemanı olarak kaydet." ++msgstr "" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1539,27 +1553,27 @@ msgstr "" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +-msgstr "/etc/vimrc ve /etc/gvimrc kaydet" ++msgstr "" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:3 + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "/etc dizininde vimrc ve gvimrc dosyalarını kontrol et ve onları sırasıyla system_vimrc ve system_gvimrc olarak kaydet." ++msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +-msgstr "vim yapılandırma dosyalarını topla" ++msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +-msgstr "Ana dizinden .vimrc ve .gvimrc kaydet" ++msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" + "Checks if there are .vimrc and .gvimrc in your home directory and saves them" + " as user_vimrc and user_gvimrc, respectively." +-msgstr "Ana dizinde .vimrc ve .gvimrc dosyalarını kontrol et ve onları sırasıyla user_vimrc ve user_gvimrc olarak kaydet." ++msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/uk.po b/po/uk.po +index 8263ec8..98845c0 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -4,14 +4,14 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# Yuri Chornoivan , 2011-2013 ++# Yuri Chornoivan , 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 11:28+0000\n" ++"Last-Translator: Yuri Chornoivan \n" + "Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora/language/uk/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -27,177 +27,188 @@ 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 "Не вдалося встановити з’єднання з NetworkManager за допомогою DBus: %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 "Ви_йти" + +-#: ../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 "Не вдалося показати сповіщення: %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] [КАТАЛОГ]...\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 "Про загальносистемні налаштування 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 "Вийти" + +@@ -232,8 +243,8 @@ msgstr "& [параметри]" + msgid "Use NUM as client uid" + msgstr "Використовувати вказане число як 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" +@@ -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 "Немає вільних засобів обробки і повний буфер. Пропускаємо архів «%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" +@@ -352,30 +363,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w ЧИСЛО] [-c МіБ] [КАТАЛОГ_ВИВАНТАЖЕННЯ]\n\n\nСпостерігати за каталогом КАТАЛОГ_ВИВАНТАЖЕННЯ розпаковувати вхідні архіви до каталогу DumpLocation, вказаного у abrt.conf\n\nЯкщо не вказано каталогу КАТАЛОГ_ВИВАНТАЖЕННЯ, буде використано значення\nWatchCrashdumpArchiveDir option from abrt.conf" + +-#: ../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 "Максимальний розмір кешу у МіБ. Типовим є" + + #: ../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 +@@ -407,12 +418,12 @@ msgstr "Не вдалося отримати дані проблеми з abrt-d + 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 " +@@ -420,7 +431,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»." +@@ -436,7 +447,6 @@ msgstr "& [параметри] -d КАТАЛОГ\n\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" +@@ -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 "З журналу ядра можна зрозуміти, що було виявлено помилки, пов’язані з обладнанням.\nЙмовірно, цю проблему не пов’язано з програмним забезпеченням.\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -522,7 +538,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" +@@ -577,7 +592,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=ФАЙЛ_ІДЕНТИФІКАТОРІВ_ЗБИРАННЯ]\n [--tmpdir=ТИМЧКАТАЛОГ] [--cache=КАТАЛОГКЕШУ[:КАТАЛОГДІАГНДАНИХ1:КАТАЛОГДІАГНДАНИХ2...]] [--size_mb=РОЗМІР]\n [-e, --exact=ШЛЯХ[:ШЛЯХ]...]]\n\nВстановлює пакунки символів для діагностики для всіх ідентифікаторів\nз файла ФАЙЛ_ІДЕНТИФІКАТОРІВ_ЗБИРАННЯ до каталогу \nКАТАЛОГКЕШУ з використанням проміжного сховища у каталозі\nТИМЧКАТАЛОГ.\nЗастарілі файли у каталозі КАТАЛОГКЕШУ буде вилучено, якщо їхній розмір\nперевищує вказаний РОЗМІР.\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 --repo зразок для пошуку сховищ.\n Типове значення: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -589,11 +604,11 @@ msgstr "Дамп ядра посилається на {0} файлів діаг + + #: ../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}" +@@ -765,73 +780,72 @@ msgstr "& [-vs] [-F РЯДОК]... ФАЙЛ ПРОГРАМА [ПАРАМЕТРИ + 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 "" ++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 "& [-vusoxm] [-d КАТАЛОГ]/[-D] [ФАЙЛ]\n\nВидобути дані аварії (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)" + +-#: ../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 "Встановлення інтервалу створення каталогу проблеми у 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 "Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про помилки." + +-#: ../src/plugins/abrt-dump-oops.c:397 ++#: ../src/plugins/abrt-dump-oops.c:398 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Очікуємо %d секунд" +@@ -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 "Не вдалося використати для шифрування даних сокета 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." + +-#: ../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." + +@@ -1425,43 +1445,43 @@ msgstr "Вивести кількість нещодавніх аварійни + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:130 ++#: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [параметри] [КАТАЛОГ]..." + +-#: ../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», відданої від імені користувача з правами доступу root\n" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [параметри] КАТАЛОГ..." + +-#: ../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» не існує" +diff --git a/po/uk_UA.po b/po/uk_UA.po +index d4eeb3e..e642939 100644 +--- a/po/uk_UA.po ++++ b/po/uk_UA.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: Ukrainian (Ukraine) (http://www.transifex.com/projects/p/fedora/language/uk_UA/)\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/ur.po b/po/ur.po +index 38a47a2..6407454 100644 +--- a/po/ur.po ++++ b/po/ur.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: Urdu (http://www.transifex.com/projects/p/fedora/language/ur/)\n" + "MIME-Version: 1.0\n" +@@ -26,177 +26,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 "" + +@@ -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/vi.po b/po/vi.po +index 86fad34..8513b8c 100644 +--- a/po/vi.po ++++ b/po/vi.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: Vietnamese (http://www.transifex.com/projects/p/fedora/language/vi/)\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/wo.po b/po/wo.po +index 6787f58..63d5148 100644 +--- a/po/wo.po ++++ b/po/wo.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: Wolof (http://www.transifex.com/projects/p/fedora/language/wo/)\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/xh.po b/po/xh.po +index ed2baf2..41012d2 100644 +--- a/po/xh.po ++++ b/po/xh.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: Xhosa (http://www.transifex.com/projects/p/fedora/language/xh/)\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/zh_CN.po b/po/zh_CN.po +index 8d53898..1d1d58a 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -4,30 +4,23 @@ + # + # Translators: + # alanzheng , 2011 +-# Alick Zhao , 2011 +-# Alick Zhao , 2013 +-# Christopher Meng , 2012-2013 +-# Huan Chen , 2011-2012 ++# Alick Zhao , 2011,2013 + # Jiří Moskovčák , 2011 +-# Leah Liu , 2011-2012 +-# Tommy He , 2011, 2012 +-# Tommy He , 2011 + # Mike Manilone , 2011 +-# Tiansworld , 2012 +-# Tiansworld , 2013 +-# Tommy He , 2012-2013 +-# wwy353244835 , 2013 +-# Wei Liu , 2012-2013 ++# Tiansworld , 2012-2013 ++# Tommy He , 2011-2012 + # turning , 2013 ++# Wei Liu , 2014 ++# wwy353244835 , 2013 + # yusuf , 2011 + # zsun , 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-12 02:31+0000\n" ++"Last-Translator: Wei Liu \n" + "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora/language/zh_CN/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -43,177 +36,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 连接到至 NetworkManger:%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 "Fedora Simplified Chinese Translation Group \nTommy He " + +-#: ../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\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 "配置错误报告" + +-#: ../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 "退出" + +@@ -248,8 +252,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" +@@ -351,12 +355,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" +@@ -368,30 +372,30 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "& [-vs] [-w 工作者数] [-c MiB] [上传目录]\n\n\n监视指定上传目录,将新加入的档案解压至 abrt.conf 中\n指定的转储位置\n\n如未指定上传目录,则使用 abrt.conf 中 \n指定的 WatchCrashdumpArchiveDir 选项" + +-#: ../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 +@@ -423,12 +427,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 " +@@ -436,7 +440,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' 失败" +@@ -452,7 +456,6 @@ msgstr "& [options] -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" +@@ -521,6 +524,12 @@ msgstr "无法提取异常信息: '{0}'" + 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 "内核日志提示探测到硬件错误。\n这很可能不是软件问题。\n" ++ + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" +@@ -538,7 +547,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" +@@ -593,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 "用法:%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}" +@@ -605,11 +613,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}" +@@ -781,73 +789,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 "由于 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 "& [-vusoxm] [-d 目录]/[-D] [文件]\n\n从指定文件(或标准输入)中提取出错信息" + +-#: ../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 相同,是在 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" + +-#: ../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 "输出搜索字符串至标准输出并退出" + +-#: ../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 "休眠 %d 秒" +@@ -875,7 +882,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 +@@ -1293,64 +1299,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 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 "设置证书钩失败。" + +-#: ../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 失败。" + +@@ -1441,43 +1454,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 "" ++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作为有 root 特权的用户使用命令 '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 "大于此处的文字在显示时会被削减" + +-#: ../src/cli/list.c:215 ++#: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "没有问题目录 '%s'" +diff --git a/po/zh_HK.po b/po/zh_HK.po +index a44b393..ea16ca6 100644 +--- a/po/zh_HK.po ++++ b/po/zh_HK.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: Chinese (Hong Kong) (http://www.transifex.com/projects/p/fedora/language/zh_HK/)\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/zu.po b/po/zu.po +index ca59f65..25fbc78 100644 +--- a/po/zu.po ++++ b/po/zu.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: Zulu (http://www.transifex.com/projects/p/fedora/language/zu/)\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 "" +-- +1.8.3.1 + diff --git a/SOURCES/abrt-2.1.6.rhel-dont_enable_shortened_reporting_in_gnome.patch b/SOURCES/abrt-2.1.6.rhel-dont_enable_shortened_reporting_in_gnome.patch deleted file mode 100644 index 027705f..0000000 --- a/SOURCES/abrt-2.1.6.rhel-dont_enable_shortened_reporting_in_gnome.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff -ruN abrt-2.1.6.new/src/lib/abrt_conf.c abrt-2.1.6.old/src/lib/abrt_conf.c ---- abrt-2.1.6.new/src/lib/abrt_conf.c 2013-07-26 11:20:33.803925230 +0200 -+++ abrt-2.1.6.old/src/lib/abrt_conf.c 2013-07-26 11:57:24.785656742 +0200 -@@ -99,9 +99,13 @@ - } - else - { -+#if 0 - /* Default: enabled for GNOME desktop, else disabled */ - const char *desktop_env = getenv("DESKTOP_SESSION"); - g_settings_shortenedreporting = (desktop_env && strcasestr(desktop_env, "gnome") != NULL); -+#else -+ g_settings_shortenedreporting = 0; -+#endif - } - - GHashTableIter iter; diff --git a/SOURCES/abrt-2.1.7-Load-conf-from-usr-share-abrt-conf.d-and-etc-abrt.patch b/SOURCES/abrt-2.1.7-Load-conf-from-usr-share-abrt-conf.d-and-etc-abrt.patch deleted file mode 100644 index 8377e54..0000000 --- a/SOURCES/abrt-2.1.7-Load-conf-from-usr-share-abrt-conf.d-and-etc-abrt.patch +++ /dev/null @@ -1,493 +0,0 @@ -From aa86e1a4ba6a472b6eb2af6cad07672322eafded Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Sun, 10 Nov 2013 10:19:57 +0100 -Subject: [ABRT PATCH 69/76] Load conf from /usr/share/abrt/conf.d and - /etc/abrt - -Related to #752 - -Signed-off-by: Jakub Filak ---- - configure.ac | 4 ++ - src/daemon/Makefile.am | 2 + - src/daemon/abrt-action-save-package-data.c | 22 ++++++++--- - src/hooks/Makefile.am | 3 ++ - src/hooks/abrt-hook-ccpp.c | 2 +- - src/hooks/abrt_exception_handler.py.in | 18 ++------- - src/hooks/abrt_harvest_vmcore.py.in | 30 +++++++------- - src/include/libabrt.h | 6 +++ - src/lib/Makefile.am | 3 ++ - src/lib/abrt_conf.c | 22 +++++++++-- - src/plugins/Makefile.am | 4 +- - src/plugins/abrt-action-analyze-xorg.c | 8 ++-- - src/plugins/abrt-action-generate-backtrace.c | 5 ++- - src/plugins/abrt-action-install-debuginfo.in | 20 +++------- - src/python-problem/problem/common.h | 2 + - src/python-problem/problem/pyabrt.c | 59 ++++++++++++++++++++++++++++ - src/python-problem/problem/pyabrtmodule.c | 2 + - 17 files changed, 151 insertions(+), 61 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 113b315..f6ae82e 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -132,8 +132,10 @@ AC_CHECK_HEADER([sys/inotify.h], [], - AC_CHECK_HEADERS([locale.h]) - - CONF_DIR='${sysconfdir}/${PACKAGE_NAME}' -+DEFAULT_CONF_DIR='${datadir}/${PACKAGE_NAME}/conf.d' - VAR_RUN='${localstatedir}/run' - 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' - ENABLE_SOCKET_OR_DBUS='-DENABLE_DBUS=1' -@@ -191,8 +193,10 @@ AC_ARG_ENABLE([native-unwinder], - - - AC_SUBST(CONF_DIR) -+AC_SUBST(DEFAULT_CONF_DIR) - AC_SUBST(VAR_RUN) - AC_SUBST(PLUGINS_CONF_DIR) -+AC_SUBST(DEFAULT_PLUGINS_CONF_DIR) - AC_SUBST(EVENTS_CONF_DIR) - AC_SUBST(EVENTS_DIR) - AC_SUBST(DEFAULT_DUMP_LOCATION) -diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am -index fba6b83..158f3e5 100644 ---- a/src/daemon/Makefile.am -+++ b/src/daemon/Makefile.am -@@ -104,6 +104,8 @@ dist_daemonconf_DATA = \ - abrt.conf \ - abrt-action-save-package-data.conf \ - gpg_keys.conf -+defaultdaemonconfdir = $(DEFAULT_CONF_DIR) -+dist_defaultdaemonconf_DATA = $(dist_daemonconf_DATA) - - EXTRA_DIST = abrt-handle-upload.in - -diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c -index 5da6905..6dbcfc2 100644 ---- a/src/daemon/abrt-action-save-package-data.c -+++ b/src/daemon/abrt-action-save-package-data.c -@@ -20,6 +20,8 @@ - #include "libabrt.h" - #include "rpm.h" - -+#define GPG_CONF "gpg_keys.conf" -+ - static bool settings_bOpenGPGCheck = false; - static GList *settings_setOpenGPGPublicKeys = NULL; - static GList *settings_setBlackListedPkgs = NULL; -@@ -79,10 +81,9 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) - static void load_gpg_keys(void) - { - map_string_t *settings = new_map_string(); -- const char *conf_filename = CONF_DIR"/gpg_keys.conf"; -- if (!load_conf_file(conf_filename, settings, /*skip key w/o values:*/ false)) -+ if (!load_abrt_conf_file(GPG_CONF, settings)) - { -- error_msg("Can't open '%s'", conf_filename); -+ error_msg("Can't load '%s'", GPG_CONF); - return; - } - -@@ -106,8 +107,17 @@ static void load_gpg_keys(void) - static int load_conf(const char *conf_filename) - { - map_string_t *settings = new_map_string(); -- if (!load_conf_file(conf_filename, settings, /*skip key w/o values:*/ false)) -- error_msg("Can't open '%s'", conf_filename); -+ if (conf_filename != NULL) -+ { -+ if (!load_conf_file(conf_filename, settings, false)) -+ error_msg("Can't open '%s'", conf_filename); -+ } -+ else -+ { -+ conf_filename = "abrt-action-save-package-data.conf"; -+ if (!load_abrt_conf_file(conf_filename, settings)) -+ error_msg("Can't load '%s'", conf_filename); -+ } - - ParseCommon(settings, conf_filename); - free_map_string(settings); -@@ -365,7 +375,7 @@ int main(int argc, char **argv) - abrt_init(argv); - - const char *dump_dir_name = "."; -- const char *conf_filename = CONF_DIR"/abrt-action-save-package-data.conf"; -+ const char *conf_filename = NULL; - - /* Can't keep these strings/structs static: _() doesn't support that */ - const char *program_usage_string = _( -diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am -index 567da6a..45ecba4 100644 ---- a/src/hooks/Makefile.am -+++ b/src/hooks/Makefile.am -@@ -10,6 +10,9 @@ dist_pluginsconf_DATA = \ - CCpp.conf \ - python.conf - -+defaultpluginsconfdir = $(DEFAULT_PLUGINS_CONF_DIR) -+dist_defaultpluginsconf_DATA = $(dist_pluginsconf_DATA) -+ - sbin_SCRIPTS = \ - abrt-install-ccpp-hook \ - abrt-harvest-vmcore \ -diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c -index a3f72a7..8e141d4 100644 ---- a/src/hooks/abrt-hook-ccpp.c -+++ b/src/hooks/abrt-hook-ccpp.c -@@ -499,7 +499,7 @@ int main(int argc, char** argv) - bool setting_SaveBinaryImage; - { - map_string_t *settings = new_map_string(); -- load_conf_file(PLUGINS_CONF_DIR"/CCpp.conf", settings, /*skip key w/o values:*/ false); -+ load_abrt_plugin_conf_file("CCpp.conf", settings); - const char *value; - value = get_map_string_item_or_NULL(settings, "MakeCompatCore"); - setting_MakeCompatCore = value && string_to_bool(value); -diff --git a/src/hooks/abrt_exception_handler.py.in b/src/hooks/abrt_exception_handler.py.in -index 4396178..96a63ff 100644 ---- a/src/hooks/abrt_exception_handler.py.in -+++ b/src/hooks/abrt_exception_handler.py.in -@@ -167,23 +167,11 @@ def get_dso_list(tb): - - def conf_enabled(var_name): - try: -- file = open(@CONF_DIR@ + "/plugins/python.conf", "r") -+ conf = problem.load_plugin_conf_file("python.conf") - except: - return -1 -- for line in file: -- w = line.split("=", 1) # split on '=' to 2 parts max -- if len(w) < 2: -- continue -- var = w[0].strip() # remove whitespace -- if var != var_name: -- continue -- val = w[1].strip() # remove whitespace -- if val == "yes": -- return 1 -- if val == "no": -- return 0 -- file.close() -- return -1 -+ else: -+ conf.get(var_name, -1) - - def handleMyException((etype, value, tb)): - """ -diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in -index 894dd47..25eddb0 100644 ---- a/src/hooks/abrt_harvest_vmcore.py.in -+++ b/src/hooks/abrt_harvest_vmcore.py.in -@@ -203,23 +203,21 @@ def harvest_vmcore(): - os.umask(077) - - # Check abrt config files for copy/move settings and -- config = ConfigParser.ConfigParser() -- # We need to add a root section as ConfigParser doesn't know how to work -- # with config files without any sections -- with open('@CONF_DIR@/abrt-harvest-vmcore.conf') as conf_file: -- conf_str = '[section]\n' + conf_file.read() -- conf_fp = StringIO.StringIO(conf_str) -- config.readfp(conf_fp) -- copyvmcore = config.get('section', 'CopyVMcore') -- with open('@CONF_DIR@/abrt.conf') as conf_file: -- conf_str = '[section]\n' + conf_file.read() -- conf_fp = StringIO.StringIO(conf_str) -- config = ConfigParser.ConfigParser() -- config.readfp(conf_fp) - try: -- abrtdumpdir = config.get('section', 'DumpLocation') -- except ConfigParser.NoOptionError: -- abrtdumpdir = '@DEFAULT_DUMP_LOCATION@' -+ conf = problem.load_conf_file("abrt-harvest-vmcore.conf") -+ except OSError as ex: -+ sys.stderr.write(str(ex)) -+ sys.exit(1) -+ else: -+ copyvmcore = conf.get("CopyVMcore", "no") -+ -+ try: -+ conf = problem.load_conf_file("abrt.conf") -+ except OSError as ex: -+ sys.stderr.write(str(ex)) -+ sys.exit(1) -+ else: -+ abrtdumpdir = conf.get("DumpLocation", "@DEFAULT_DUMP_LOCATION@") - - try: - filelist = os.listdir(dump_dir) -diff --git a/src/include/libabrt.h b/src/include/libabrt.h -index 30399b6..518e989 100644 ---- a/src/include/libabrt.h -+++ b/src/include/libabrt.h -@@ -82,6 +82,12 @@ int load_abrt_conf(void); - #define free_abrt_conf_data abrt_free_abrt_conf_data - void free_abrt_conf_data(void); - -+#define load_abrt_conf_file abrt_load_abrt_conf_file -+int load_abrt_conf_file(const char *file, map_string_t *settings); -+ -+#define load_abrt_plugin_conf_file abrt_load_abrt_plugin_conf_file -+int load_abrt_plugin_conf_file(const char *file, map_string_t *settings); -+ - - void migrate_to_xdg_dirs(void); - -diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am -index c5a6e2f..8823f01 100644 ---- a/src/lib/Makefile.am -+++ b/src/lib/Makefile.am -@@ -23,6 +23,9 @@ libabrt_la_CPPFLAGS = \ - -I$(srcdir)/../lib \ - -DVAR_RUN=\"$(VAR_RUN)\" \ - -DCONF_DIR=\"$(CONF_DIR)\" \ -+ -DDEFAULT_CONF_DIR=\"$(DEFAULT_CONF_DIR)\" \ -+ -DPLUGINS_CONF_DIR=\"$(PLUGINS_CONF_DIR)\" \ -+ -DDEFAULT_PLUGINS_CONF_DIR=\"$(DEFAULT_PLUGINS_CONF_DIR)\" \ - -DEVENTS_DIR=\"$(EVENTS_DIR)\" \ - -DDEFAULT_DUMP_LOCATION=\"$(DEFAULT_DUMP_LOCATION)\" \ - $(GLIB_CFLAGS) \ -diff --git a/src/lib/abrt_conf.c b/src/lib/abrt_conf.c -index 7230b77..5bb11e9 100644 ---- a/src/lib/abrt_conf.c -+++ b/src/lib/abrt_conf.c -@@ -18,6 +18,8 @@ - */ - #include "libabrt.h" - -+#define ABRT_CONF "abrt.conf" -+ - char * g_settings_sWatchCrashdumpArchiveDir = NULL; - unsigned int g_settings_nMaxCrashReportsSize = 1000; - char * g_settings_dump_location = NULL; -@@ -119,11 +121,25 @@ int load_abrt_conf() - free_abrt_conf_data(); - - map_string_t *settings = new_map_string(); -- if (!load_conf_file(CONF_DIR"/abrt.conf", settings, /*skip key w/o values:*/ false)) -- perror_msg("Can't open '%s'", CONF_DIR"/abrt.conf"); -+ if (!load_abrt_conf_file(ABRT_CONF, settings)) -+ perror_msg("Can't load '%s'", ABRT_CONF); - -- ParseCommon(settings, CONF_DIR"/abrt.conf"); -+ ParseCommon(settings, ABRT_CONF); - free_map_string(settings); - - return 0; - } -+ -+int load_abrt_conf_file(const char *file, map_string_t *settings) -+{ -+ static const char *const base_directories[] = { DEFAULT_CONF_DIR, CONF_DIR, NULL }; -+ -+ return load_conf_file_from_dirs(file, base_directories, settings, /*skip key w/o values:*/ false); -+} -+ -+int load_abrt_plugin_conf_file(const char *file, map_string_t *settings) -+{ -+ static const char *const base_directories[] = { DEFAULT_PLUGINS_CONF_DIR, PLUGINS_CONF_DIR, NULL }; -+ -+ return load_conf_file_from_dirs(file, base_directories, settings, /*skip key w/o values:*/ false); -+} -diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am -index 370d5fd..60246f2 100644 ---- a/src/plugins/Makefile.am -+++ b/src/plugins/Makefile.am -@@ -96,9 +96,11 @@ EXTRA_DIST = \ - post_report.xml.in \ - abrt-action-analyze-ccpp-local - --confdir = $(CONF_DIR) -+confdir = $(PLUGINS_CONF_DIR) - dist_conf_DATA = \ - xorg.conf -+defaultconfdir = $(DEFAULT_PLUGINS_CONF_DIR) -+dist_defaultconf_DATA = $(dist_conf_DATA) - - abrt_watch_log_SOURCES = \ - abrt-watch-log.c -diff --git a/src/plugins/abrt-action-analyze-xorg.c b/src/plugins/abrt-action-analyze-xorg.c -index 5cf6d1e..5d11830 100644 ---- a/src/plugins/abrt-action-analyze-xorg.c -+++ b/src/plugins/abrt-action-analyze-xorg.c -@@ -19,6 +19,8 @@ - #include - #include "libabrt.h" - -+#define XORG_CONF "xorg.conf" -+ - static - void trim_spaces(char *str) - { -@@ -87,9 +89,9 @@ int main(int argc, char **argv) - export_abrt_envvars(0); - - map_string_t *settings = new_map_string(); -- VERB1 log("Loading settings from '%s'", "/etc/abrt/xorg.conf"); -- load_conf_file("/etc/abrt/xorg.conf", settings, /*skip key w/o values:*/ false); -- VERB3 log("Loaded '%s'", "/etc/abrt/xorg.conf"); -+ VERB1 log("Loading settings from '%s'", XORG_CONF); -+ load_abrt_plugin_conf_file(XORG_CONF, settings); -+ VERB3 log("Loaded '%s'", XORG_CONF); - char *BlacklistedXorgModules = xstrdup(get_map_string_item_or_empty(settings, "BlacklistedXorgModules")); - trim_spaces(BlacklistedXorgModules); - free_map_string(settings); -diff --git a/src/plugins/abrt-action-generate-backtrace.c b/src/plugins/abrt-action-generate-backtrace.c -index 5612a1c..30ce446 100644 ---- a/src/plugins/abrt-action-generate-backtrace.c -+++ b/src/plugins/abrt-action-generate-backtrace.c -@@ -18,6 +18,7 @@ - */ - #include "libabrt.h" - -+#define CCPP_CONF "CCpp.conf" - - static const char *dump_dir_name = "."; - /* 60 seconds was too limiting on slow machines */ -@@ -61,8 +62,8 @@ int main(int argc, char **argv) - export_abrt_envvars(0); - - map_string_t *settings = new_map_string(); -- if (!load_conf_file(PLUGINS_CONF_DIR"/CCpp.conf", settings, /*skip key w/o values:*/ false)) -- error_msg("Can't open '%s'", PLUGINS_CONF_DIR"/CCpp.conf"); -+ if (!load_abrt_plugin_conf_file(CCPP_CONF, settings)) -+ error_msg("Can't load '%s'", CCPP_CONF); - - const char *value = get_map_string_item_or_NULL(settings, "DebuginfoLocation"); - char *debuginfo_location; -diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in -index b734796..5fd3110 100644 ---- a/src/plugins/abrt-action-install-debuginfo.in -+++ b/src/plugins/abrt-action-install-debuginfo.in -@@ -14,6 +14,7 @@ from subprocess import Popen, PIPE - from reportclient import _, verbose, log, log1, log2, set_verbosity, error_msg_and_die, error_msg - import time - from reportclient.debuginfo import DebugInfoDownload, filter_installed_debuginfos, build_ids_to_path, clean_up -+import problem - - # everything was ok - RETURN_OK = 0 -@@ -144,20 +145,11 @@ if __name__ == "__main__": - - if not cachedirs: - try: -- fp = open("@sysconfdir@/@PACKAGE_NAME@/plugins/CCpp.conf", "r") -- for line in fp: -- stripped = line.lstrip() -- if len(stripped) == 0: -- continue -- if stripped[0] == "#": -- continue -- if stripped[:len("DebuginfoLocation")] != "DebuginfoLocation": -- continue -- -- cachedirs = stripped[len("DebuginfoLocation"):].strip(" =\n").split(":") -- fp.close() -- except IOError as (errno, strerror): -- print "I/O error({0}): {1}".format(errno, strerror) -+ conf = problem.load_plugin_conf_file("CCpp.conf") -+ except OSError as ex: -+ print str(ex) -+ else: -+ cachedirs = conf.get("DebuginfoLocation", None) - - if not cachedirs: - cachedirs = ["/var/cache/abrt-di"] -diff --git a/src/python-problem/problem/common.h b/src/python-problem/problem/common.h -index ef323a5..2dd06c7 100644 ---- a/src/python-problem/problem/common.h -+++ b/src/python-problem/problem/common.h -@@ -20,3 +20,5 @@ - - /* module-level functions */ - PyObject *p_notify_new_path(PyObject *pself, PyObject *args); -+PyObject *p_load_conf_file(PyObject *pself, PyObject *args); -+PyObject *p_load_plugin_conf_file(PyObject *pself, PyObject *args); -diff --git a/src/python-problem/problem/pyabrt.c b/src/python-problem/problem/pyabrt.c -index 16621d3..16d455f 100644 ---- a/src/python-problem/problem/pyabrt.c -+++ b/src/python-problem/problem/pyabrt.c -@@ -32,3 +32,62 @@ PyObject *p_notify_new_path(PyObject *pself, PyObject *args) - notify_new_path(path); - Py_RETURN_NONE; - } -+ -+static PyObject * -+load_settings_to_dict(const char *file, int (*loader)(const char *, map_string_t *)) -+{ -+ PyObject *dict = NULL; -+ map_string_t *settings = new_map_string(); -+ if (!loader(file, settings)) -+ { -+ PyErr_SetString(PyExc_OSError, "Failed to load configuration file."); -+ goto lacf_error; -+ } -+ -+ dict = PyDict_New(); -+ if (dict == NULL) -+ { -+ goto lacf_error; -+ } -+ -+ map_string_iter_t iter; -+ const char *key = NULL; -+ const char *value = NULL; -+ init_map_string_iter(&iter, settings); -+ while(next_map_string_iter(&iter, &key, &value)) -+ { -+ if (0 != PyDict_SetItemString(dict, key, PyString_FromString(value))) -+ { -+ goto lacf_error; -+ } -+ } -+ free_map_string(settings); -+ return dict; -+ -+lacf_error: -+ Py_XDECREF(dict); -+ free_map_string(settings); -+ return NULL; -+} -+ -+/* C: void load_abrt_conf_file(const char *file, map_string_t *settings); */ -+PyObject *p_load_conf_file(PyObject *pself, PyObject *args) -+{ -+ const char *file; -+ if (!PyArg_ParseTuple(args, "s", &file)) -+ { -+ return NULL; -+ } -+ return load_settings_to_dict(file, load_abrt_conf_file); -+} -+ -+/* C: void load_abrt_plugin_conf_file(const char *file, map_string_t *settings); */ -+PyObject *p_load_plugin_conf_file(PyObject *pself, PyObject *args) -+{ -+ const char *file; -+ if (!PyArg_ParseTuple(args, "s", &file)) -+ { -+ return NULL; -+ } -+ return load_settings_to_dict(file, load_abrt_plugin_conf_file); -+} -diff --git a/src/python-problem/problem/pyabrtmodule.c b/src/python-problem/problem/pyabrtmodule.c -index 7ff58b3..e31d8b4 100644 ---- a/src/python-problem/problem/pyabrtmodule.c -+++ b/src/python-problem/problem/pyabrtmodule.c -@@ -24,6 +24,8 @@ static PyMethodDef module_methods[] = { - /* method_name, func, flags, doc_string */ - /* for include/client.h */ - { "notify_new_path" , p_notify_new_path , METH_VARARGS }, -+ { "load_conf_file" , p_load_conf_file , METH_VARARGS }, -+ { "load_plugin_conf_file" , p_load_plugin_conf_file , METH_VARARGS }, - { NULL } - }; - --- -1.8.3.1 - diff --git a/SOURCES/abrt-2.1.7-don-t-consider-crashes-posted-to-ABRT-server-as-repo.patch b/SOURCES/abrt-2.1.7-don-t-consider-crashes-posted-to-ABRT-server-as-repo.patch deleted file mode 100644 index 5770334..0000000 --- a/SOURCES/abrt-2.1.7-don-t-consider-crashes-posted-to-ABRT-server-as-repo.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 783e0e1248a4bad3882135adf3eb69e9429b8ec4 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Mon, 14 Oct 2013 10:45:00 +0200 -Subject: [ABRT PATCH 29/76] don't consider crashes posted to ABRT server as - reported - -ABRT server uses the same logic. A crash is considered as reported only -if a bugzilla bug is attached to this crash. - -ABRT has to allow users to report a crash to Bugzilla because ABRT server -does not support interaction between reporters and developers. - -Closes rhbz#1018570 - -Signed-off-by: Jakub Filak ---- - src/plugins/abrt-action-ureport | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport -index 38890bf..8c0f36f 100755 ---- a/src/plugins/abrt-action-ureport -+++ b/src/plugins/abrt-action-ureport -@@ -91,7 +91,7 @@ if __name__ == "__main__": - if reported_to and reported_to != "": - bugs = set() - for line in reported_to.split("\n"): -- if line.startswith("Bugzilla:") or line.startswith("ABRT Server:"): -+ if line.startswith("Bugzilla:"): - bugs.add(line) - if bugs: - log(_("A bug was already filed about this problem:")) --- -1.8.3.1 - diff --git a/SOURCES/abrt-2.1.7-enable-sosreport.patch b/SOURCES/abrt-2.1.7-enable-sosreport.patch deleted file mode 100644 index 96f9ea1..0000000 --- a/SOURCES/abrt-2.1.7-enable-sosreport.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -ruN abrt-2.1.7.nosos/src/daemon/abrt_event.conf abrt-2.1.7.sos/src/daemon/abrt_event.conf ---- abrt-2.1.7.nosos/src/daemon/abrt_event.conf 2013-11-20 13:54:47.947567306 +0100 -+++ abrt-2.1.7.sos/src/daemon/abrt_event.conf 2013-11-20 14:55:16.534650101 +0100 -@@ -67,12 +67,12 @@ - # 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 \ - && { diff --git a/SOURCES/abrt-2.1.7-enabled-autoreporting.patch b/SOURCES/abrt-2.1.7-enabled-autoreporting.patch deleted file mode 100644 index 6bd8754..0000000 --- a/SOURCES/abrt-2.1.7-enabled-autoreporting.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur abrt-2.1.1/src/daemon/abrt.conf abrt-2.1.1.new/src/daemon/abrt.conf ---- abrt-2.1.1/src/daemon/abrt.conf 2013-02-01 12:59:58.000000000 +0100 -+++ abrt-2.1.1.new/src/daemon/abrt.conf 2013-03-05 10:01:11.347789231 +0100 -@@ -34,7 +34,7 @@ - - # 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. diff --git a/SOURCES/abrt-2.1.7-factor-out-D-Bus-notification-to-a-python-script.patch b/SOURCES/abrt-2.1.7-factor-out-D-Bus-notification-to-a-python-script.patch deleted file mode 100644 index 61b3222..0000000 --- a/SOURCES/abrt-2.1.7-factor-out-D-Bus-notification-to-a-python-script.patch +++ /dev/null @@ -1,299 +0,0 @@ -From 86062536d4a314c0d628791640127238a2952be4 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 22 Oct 2013 15:45:34 +0200 -Subject: [ABRT PATCH 59/76] factor out D-Bus notification to a python script - -This patch is a part of our effort to move application logic from -configuration files to executables. - -Related to #684 - -Signed-off-by: Jakub Filak ---- - doc/Makefile.am | 1 + - doc/abrt-action-notify.txt | 38 ++++++++++ - src/dbus/dbus_event.conf | 19 +---- - src/plugins/Makefile.am | 6 +- - src/plugins/abrt-action-notify | 164 +++++++++++++++++++++++++++++++++++++++++ - 5 files changed, 211 insertions(+), 17 deletions(-) - create mode 100644 doc/abrt-action-notify.txt - create mode 100644 src/plugins/abrt-action-notify - -diff --git a/doc/Makefile.am b/doc/Makefile.am -index 1ca52b5..8b14517 100644 ---- a/doc/Makefile.am -+++ b/doc/Makefile.am -@@ -16,6 +16,7 @@ MAN1_TXT += abrt-action-analyze-vulnerability.txt - MAN1_TXT += abrt-action-install-debuginfo.txt - MAN1_TXT += abrt-action-list-dsos.txt - MAN1_TXT += abrt-action-perform-ccpp-analysis.txt -+MAN1_TXT += abrt-action-notify.txt - MAN1_TXT += abrt-applet.txt - MAN1_TXT += abrt-dump-oops.txt - MAN1_TXT += abrt-dump-xorg.txt -diff --git a/doc/abrt-action-notify.txt b/doc/abrt-action-notify.txt -new file mode 100644 -index 0000000..c5bd7b0 ---- /dev/null -+++ b/doc/abrt-action-notify.txt -@@ -0,0 +1,38 @@ -+abrt-action-notify(1) -+=================== -+ -+NAME -+---- -+abrt-action-notify - Announces a new occurrence of problem via all accessible channels -+ -+SYNOPSIS -+-------- -+'abrt-action-notify' [-h] [-d PROBLEM_DIR] -+ -+DESCRIPTION -+----------- -+The current implementation emits a D-Bus signal on System bus in path -+/org/freedesktop/problems of org.freedesktop.problems interface for Crash -+member. -+ -+Integration with ABRT events -+~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -+'abrt-action-notify' is used to notify new problems and consecutive occurrences -+of a single problem for all crash types. -+ -+------------ -+EVENT=notify package!= -+ abrt-action-notify -+------------ -+ -+OPTIONS -+------- -+-d, --problem-dir PROBLEM_DIR:: -+ Problem directory [Default: current directory] -+ -+-h, --help:: -+ Show help message -+ -+AUTHORS -+------- -+* ABRT team -diff --git a/src/dbus/dbus_event.conf b/src/dbus/dbus_event.conf -index 4d24fef..499e484 100644 ---- a/src/dbus/dbus_event.conf -+++ b/src/dbus/dbus_event.conf -@@ -1,16 +1,5 @@ --EVENT=notify package!= uid!= -- dbus-send --system --type=signal /org/freedesktop/problems org.freedesktop.problems.Crash \ -- string:"`cat package`" string:"$DUMP_DIR" string:"`cat uid`" -- --EVENT=notify package!= uid= -- dbus-send --system --type=signal /org/freedesktop/problems org.freedesktop.problems.Crash \ -- string:"`cat package`" string:"$DUMP_DIR" -- --EVENT=notify-dup package!= uid!= -- dbus-send --system --type=signal /org/freedesktop/problems org.freedesktop.problems.Crash \ -- string:"`cat package`" string:"$DUMP_DIR" string:"`cat uid`" -- --EVENT=notify-dup package!= uid= -- dbus-send --system --type=signal /org/freedesktop/problems org.freedesktop.problems.Crash \ -- string:"`cat package`" string:"$DUMP_DIR" -+EVENT=notify package!= -+ abrt-action-notify -d $DUMP_DIR - -+EVENT=notify-dup package!= -+ abrt-action-notify -d $DUMP_DIR -diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am -index fbda305..370d5fd 100644 ---- a/src/plugins/Makefile.am -+++ b/src/plugins/Makefile.am -@@ -8,7 +8,8 @@ bin_SCRIPTS = \ - abrt-action-list-dsos \ - abrt-action-perform-ccpp-analysis \ - abrt-action-save-kernel-data \ -- abrt-action-analyze-ccpp-local -+ abrt-action-analyze-ccpp-local \ -+ abrt-action-notify - - bin_PROGRAMS = \ - abrt-watch-log \ -@@ -73,7 +74,8 @@ PYTHON_FILES = \ - abrt-action-analyze-core \ - abrt-action-analyze-vulnerability \ - abrt-action-analyze-vmcore.in \ -- abrt-action-perform-ccpp-analysis.in -+ abrt-action-perform-ccpp-analysis.in \ -+ abrt-action-notify - - EXTRA_DIST = \ - $(PYTHON_FILES) \ -diff --git a/src/plugins/abrt-action-notify b/src/plugins/abrt-action-notify -new file mode 100644 -index 0000000..722d7f6 ---- /dev/null -+++ b/src/plugins/abrt-action-notify -@@ -0,0 +1,164 @@ -+#!/usr/bin/python -+# This program is free software; you can redistribute it and/or modify -+# it under the terms of the GNU General Public License as published by -+# the Free Software Foundation; either version 2 of the License, or -+# (at your option) any later version. -+# -+# This program is distributed in the hope that it will be useful, -+# but WITHOUT ANY WARRANTY; without even the implied warranty of -+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+# GNU General Public License for more details. -+# -+# You should have received a copy of the GNU General Public License -+# along with this program; if not, write to the Free Software -+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -+ -+import os -+import sys -+from argparse import ArgumentParser -+ -+import dbus -+import dbus.lowlevel -+ -+import report -+from reportclient import (RETURN_OK, -+ RETURN_FAILURE) -+ -+CD_DUMPDIR = "Directory" -+FILENAME_PACKAGE = "package" -+FILENAME_UID = "uid" -+FILENAME_UUID = "uuid" -+FILENAME_DUPHASH = "duphash" -+ -+def emit_crash_dbus_signal(problem_data): -+ """Emits a Crash signal on D-Bus Problem bus -+ -+ Emits a signal with 5 members: -+ package -- value of 'package' element in problem_data -+ problem_id -- value of 'Directory' element in problem_data -+ uid -- empty string if 'uid' element is not present in problem_data -+ -+ -+ -+ Keyword arguments: -+ problem_data -- problem data of notified problems -+ -+ Returns None as it raises an exception on error -+ -+ Raises: -+ RuntimeError -- for all D-Bus related errors -+ KeyError -- if any of required elements is missing -+ """ -+ -+ try: -+ bus = dbus.SystemBus() -+ msg = dbus.lowlevel.SignalMessage("/org/freedesktop/problems", -+ "org.freedesktop.problems", "Crash") -+ -+ # List of tuples where the first member is element name and the second -+ # member is a Boolean flag which is True if the element is required -+ arguments = ((FILENAME_PACKAGE, True), (CD_DUMPDIR, True), -+ (FILENAME_UID, False) -+ ) -+ -+ for elem in arguments: -+ itm = problem_data.get(elem[0]) -+ -+ if itm is None: -+ if elem[1]: -+ raise KeyError(elem[0]) -+ -+ msg.append("", signature="s") -+ else: -+ msg.append(itm[0], signature="s") -+ -+ -+ bus.send_message(msg) -+ except dbus.exceptions.DBusException as ex: -+ raise RuntimeError("Failed to emit D-Bus Crash signal: {0}" -+ .format(ex.message)) -+ finally: -+ if bus is not None: -+ bus.close() -+ -+def build_notification_problem_data(problem_dir): -+ """Loads all necessary problem elements -+ -+ Problem dump directory must contain 'package' element. -+ -+ Keyword arguments: -+ problem_dir -- an absolute file system path problem directory -+ -+ Returns an instance of report.problem_data -+ -+ Raises: -+ ValueError -- if problem_dir is not an absolute path, if problem_dir cannot -+ be opened and if any required problem element is missing. -+ """ -+ -+ if not os.path.isabs(problem_dir): -+ raise ValueError("problem directory must be absolute path") -+ -+ prblm_dt = report.problem_data() -+ -+ try: -+ dump_dir = report.dd_opendir(problem_dir, report.DD_OPEN_READONLY) -+ if not dump_dir: -+ raise ValueError("cannot open problem directory") -+ -+ dd_load_flag = (report.DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE -+ | report.DD_FAIL_QUIETLY_ENOENT) -+ -+ package = dump_dir.load_text(FILENAME_PACKAGE, dd_load_flag) -+ if not package: -+ raise ValueError("problem directory misses '{0}'" -+ .format(FILENAME_PACKAGE)) -+ -+ pd_add_flag = report.CD_FLAG_TXT | report.CD_FLAG_ISNOTEDITABLE -+ -+ prblm_dt.add(FILENAME_PACKAGE, package, pd_add_flag) -+ prblm_dt.add(CD_DUMPDIR, problem_dir, pd_add_flag) -+ -+ for element in (FILENAME_UID, FILENAME_UUID, FILENAME_DUPHASH): -+ val = dump_dir.load_text(element, dd_load_flag) -+ if val is not None: -+ prblm_dt.add(element, val, pd_add_flag) -+ finally: -+ dump_dir.close() -+ -+ return prblm_dt -+ -+ -+if __name__ == "__main__": -+ CMDARGS = ArgumentParser( -+ description=("Announce a new or duplicated problem via" -+ " all accessible channels")) -+ CMDARGS.add_argument("-d", "--problem-dir", -+ type=str, required=True, -+ help="An absolute path to a new or duplicated problem directory") -+ -+ OPTIONS = CMDARGS.parse_args() -+ -+ DIR_PATH = OPTIONS.problem_dir -+ -+ try: -+ PD = build_notification_problem_data(DIR_PATH) -+ except ValueError as ex: -+ sys.stderr.write("Cannot notify '{0}': {1}\n". -+ format(DIR_PATH, ex.message)) -+ sys.exit(RETURN_FAILURE) -+ -+ try: -+ emit_crash_dbus_signal(PD) -+ 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) -+ --- -1.8.3.1 - diff --git a/SOURCES/abrt-2.1.7-move-the-notify-event-from-dbus_event.conf-to-abrt_e.patch b/SOURCES/abrt-2.1.7-move-the-notify-event-from-dbus_event.conf-to-abrt_e.patch deleted file mode 100644 index a8e37a1..0000000 --- a/SOURCES/abrt-2.1.7-move-the-notify-event-from-dbus_event.conf-to-abrt_e.patch +++ /dev/null @@ -1,62 +0,0 @@ -From f603b036b2039b044066b73c21646dad6f4c1de1 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 13 Nov 2013 08:25:52 +0100 -Subject: [ABRT PATCH 72/76] move the notify event from dbus_event.conf to - abrt_event.conf - -The notify event no longer uses only D-Bus, but it also runs the -autoreporting event. - -Related to #750 - -Signed-off-by: Jakub Filak ---- - doc/dbus_event.conf.5 | 1 - - src/daemon/abrt_event.conf | 8 ++++++++ - src/dbus/Makefile.am | 3 --- - src/dbus/dbus_event.conf | 5 ----- - 5 files changed, 8 insertions(+), 10 deletions(-) - delete mode 100644 doc/dbus_event.conf.5 - delete mode 100644 src/dbus/dbus_event.conf - -diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf -index c60ad50..a53001a 100644 ---- a/src/daemon/abrt_event.conf -+++ b/src/daemon/abrt_event.conf -@@ -100,3 +100,11 @@ EVENT=post-create runlevel= - - EVENT=open-gui - report-gtk -x -- "$DUMP_DIR" -+ -+# Notify a new crash -+EVENT=notify package!= -+ abrt-action-notify -d $DUMP_DIR -+ -+# Notify a new occurrence of a single crash -+EVENT=notify-dup package!= -+ abrt-action-notify -d $DUMP_DIR -diff --git a/src/dbus/Makefile.am b/src/dbus/Makefile.am -index 2eb32cf..ed0a2af 100644 ---- a/src/dbus/Makefile.am -+++ b/src/dbus/Makefile.am -@@ -33,6 +33,3 @@ orgfreedesktopproblemsservicedir = ${datadir}/dbus-1/system-services - dist_orgfreedesktopproblemsservice_DATA = org.freedesktop.problems.service - - eventsconfdir = $(EVENTS_CONF_DIR) -- --dist_eventsconf_DATA = \ -- dbus_event.conf -diff --git a/src/dbus/dbus_event.conf b/src/dbus/dbus_event.conf -deleted file mode 100644 -index 499e484..0000000 ---- a/src/dbus/dbus_event.conf -+++ /dev/null -@@ -1,5 +0,0 @@ --EVENT=notify package!= -- abrt-action-notify -d $DUMP_DIR -- --EVENT=notify-dup package!= -- abrt-action-notify -d $DUMP_DIR --- -1.8.3.1 - diff --git a/SOURCES/abrt-2.1.7-no_fedoraproject_urls.patch b/SOURCES/abrt-2.1.7-no_fedoraproject_urls.patch deleted file mode 100644 index f4d56d0..0000000 --- a/SOURCES/abrt-2.1.7-no_fedoraproject_urls.patch +++ /dev/null @@ -1,48 +0,0 @@ -diff -ruN abrt-2.1.7.new/src/plugins/abrt-dedup-client.c abrt-2.1.7.fix/src/plugins/abrt-dedup-client.c ---- abrt-2.1.7.new/src/plugins/abrt-dedup-client.c 2013-11-12 15:14:43.463274388 +0100 -+++ abrt-2.1.7.fix/src/plugins/abrt-dedup-client.c 2013-11-12 15:18:55.597260803 +0100 -@@ -28,7 +28,7 @@ - static bool http_show_headers = false; - static struct https_cfg cfg = - { -- .url = "retrace.fedoraproject.org", -+ .url = "localhost", - .port = 443, - .ssl_allow_insecure = false, - }; -diff -ruN abrt-2.1.7.new/src/plugins/abrt-retrace-client.c abrt-2.1.7.fix/src/plugins/abrt-retrace-client.c ---- abrt-2.1.7.new/src/plugins/abrt-retrace-client.c 2013-11-12 15:14:43.463274388 +0100 -+++ abrt-2.1.7.fix/src/plugins/abrt-retrace-client.c 2013-11-12 15:18:45.662261338 +0100 -@@ -58,7 +58,7 @@ - - static struct https_cfg cfg = - { -- .url = "retrace.fedoraproject.org", -+ .url = "localhost", - .port = 443, - .ssl_allow_insecure = false, - }; -diff -ruN abrt-2.1.7.new/src/plugins/analyze_CCpp.xml.in abrt-2.1.7.fix/src/plugins/analyze_CCpp.xml.in ---- abrt-2.1.7.new/src/plugins/analyze_CCpp.xml.in 2013-11-12 15:14:43.460274388 +0100 -+++ abrt-2.1.7.fix/src/plugins/analyze_CCpp.xml.in 2013-11-12 15:19:52.912257714 +0100 -@@ -26,7 +26,7 @@ - - -diff -ruN abrt-2.1.7.new/src/plugins/analyze_RetraceServer.xml.in abrt-2.1.7.fix/src/plugins/analyze_RetraceServer.xml.in ---- abrt-2.1.7.new/src/plugins/analyze_RetraceServer.xml.in 2013-11-12 15:14:43.463274388 +0100 -+++ abrt-2.1.7.fix/src/plugins/analyze_RetraceServer.xml.in 2013-11-12 15:19:51.252257804 +0100 -@@ -12,7 +12,7 @@ - - diff --git a/SOURCES/abrt-2.1.7-python_examples_removed_from_doc.patch b/SOURCES/abrt-2.1.7-python_examples_removed_from_doc.patch deleted file mode 100644 index 2115b1e..0000000 --- a/SOURCES/abrt-2.1.7-python_examples_removed_from_doc.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 5d71133fe4a5d92d7a24072da9358d76b22ec313 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Wed, 9 Oct 2013 17:07:21 +0200 -Subject: [ABRT PATCH 1/2] install problem examples to python dir - -Byte compiled files have different content for different architectures. -rpmdiff requires to have equal content on all architectures for all -corresponding documentation files. - -Related to rhbz#1016506 - -Signed-off-by: Jakub Filak ---- - src/python-problem/examples/Makefile.am | 6 ++---- - 1 file changed, 2 insertions(+), 4 deletions(-) - -diff --git a/src/python-problem/examples/Makefile.am b/src/python-problem/examples/Makefile.am -index e8da2d7..b93e0c3 100644 ---- a/src/python-problem/examples/Makefile.am -+++ b/src/python-problem/examples/Makefile.am -@@ -1,4 +1,4 @@ --example_python_DATA = \ -+example_PYTHON = \ - bugzilla_numbers.py \ - daemon_example.py \ - edit_example.py \ -@@ -9,6 +9,4 @@ example_python_DATA = \ - watch_example.py \ - thread_watch_example.py - --example_pythondir = $(datadir)/doc/$(PACKAGE)-python-$(VERSION)/examples -- --EXTRA_DIST = $(example_python_DATA) -+exampledir = $(pythondir)/problem_examples --- -1.8.3.1 - diff --git a/SOURCES/abrt-2.1.7-replace_deprecated_polkit_functions.patch b/SOURCES/abrt-2.1.7-replace_deprecated_polkit_functions.patch deleted file mode 100644 index ebd9c42..0000000 --- a/SOURCES/abrt-2.1.7-replace_deprecated_polkit_functions.patch +++ /dev/null @@ -1,31 +0,0 @@ -From e03f5f1f604097a8b999912771fb2abcdb59db21 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Fri, 20 Sep 2013 16:53:35 +0200 -Subject: [ABRT PATCH 02/14] polkit: replace deprecated functions with their - subtitues - -Closes #708 - -Signed-off-by: Jakub Filak ---- - src/dbus/abrt-polkit.c | 5 ++++- - 1 file changed, 4 insertions(+), 1 deletion(-) - -diff --git a/src/dbus/abrt-polkit.c b/src/dbus/abrt-polkit.c -index a71114a..39880e5 100644 ---- a/src/dbus/abrt-polkit.c -+++ b/src/dbus/abrt-polkit.c -@@ -101,6 +101,9 @@ PolkitResult polkit_check_authorization_pid(pid_t pid, const char *action_id) - { - glib_init(); - -- PolkitSubject *subject = polkit_unix_process_new(pid); -+ PolkitSubject *subject = polkit_unix_process_new_for_owner(pid, -+ /*use start_time from /proc*/0, -+ /*use uid from /proc*/ -1); -+ - return do_check(subject, action_id); - } --- -1.8.3.1 - diff --git a/SOURCES/abrt-2.1.7-run-the-autoreporting-event-from-abrt-action-notify.patch b/SOURCES/abrt-2.1.7-run-the-autoreporting-event-from-abrt-action-notify.patch deleted file mode 100644 index aff75ca..0000000 --- a/SOURCES/abrt-2.1.7-run-the-autoreporting-event-from-abrt-action-notify.patch +++ /dev/null @@ -1,207 +0,0 @@ -From 1cf434cb395b6b06297281427a47aeebe224b436 Mon Sep 17 00:00:00 2001 -From: Jakub Filak -Date: Tue, 12 Nov 2013 16:39:08 +0100 -Subject: [ABRT PATCH 71/76] run the autoreporting event from - abrt-action-notify - -If AutoreportingEnabled option from abrt.conf holds "yes", then -abrt-action-notify runs AutoreportingEvent from abrt.conf. - -Related to #750 - -Signed-off-by: Jakub Filak ---- - doc/abrt-action-notify.txt | 30 +++++++++++++- - src/plugins/abrt-action-notify | 92 +++++++++++++++++++++++++++++++++++++++++- - 2 files changed, 119 insertions(+), 3 deletions(-) - -diff --git a/doc/abrt-action-notify.txt b/doc/abrt-action-notify.txt -index c5bd7b0..56a456c 100644 ---- a/doc/abrt-action-notify.txt -+++ b/doc/abrt-action-notify.txt -@@ -7,7 +7,7 @@ abrt-action-notify - Announces a new occurrence of problem via all accessible ch - - SYNOPSIS - -------- --'abrt-action-notify' [-h] [-d PROBLEM_DIR] -+'abrt-action-notify' [-h] -d PROBLEM_DIR [-v] [-a] [-e AUTOREPORTING_EVENT] - - DESCRIPTION - ----------- -@@ -27,12 +27,40 @@ EVENT=notify package!= - - OPTIONS - ------- -+-v, --verbose:: -+ Be verbose -+ - -d, --problem-dir PROBLEM_DIR:: - Problem directory [Default: current directory] - - -h, --help:: - Show help message - -+-a, --autoreporting:: -+ Force to run autoreporting event -+ -+-e, --autoreporting-event AUTOREPORTING_EVENT:: -+ Overwrite autoreporting event name -+ -+ENVIRONMENT -+---------- -+ABRT_VERBOSE:: -+ ABRT verbosity level -+ -+FILES -+----- -+/etc/abrt/abrt.conf -+ -+AutoreportingEnabled:: -+ If enabled, abrt-action-notify runs AutoreportingEvent -+ -+AutoreportingEvent:: -+ Name of event to be run if autoreporting is enabled -+ -+SEE ALSO -+-------- -+abrt.conf(5) -+ - AUTHORS - ------- - * ABRT team -diff --git a/src/plugins/abrt-action-notify b/src/plugins/abrt-action-notify -index 722d7f6..aa12105 100644 ---- a/src/plugins/abrt-action-notify -+++ b/src/plugins/abrt-action-notify -@@ -20,9 +20,15 @@ from argparse import ArgumentParser - import dbus - import dbus.lowlevel - -+import problem -+ - import report - from reportclient import (RETURN_OK, -- RETURN_FAILURE) -+ RETURN_FAILURE, -+ RETURN_CANCEL_BY_USER, -+ RETURN_STOP_EVENT_RUN, -+ log1, -+ set_verbosity) - - CD_DUMPDIR = "Directory" - FILENAME_PACKAGE = "package" -@@ -30,6 +36,39 @@ FILENAME_UID = "uid" - FILENAME_UUID = "uuid" - FILENAME_DUPHASH = "duphash" - -+ -+def run_autoreport(problem_data, event_name): -+ """Runs autoreporting event -+ -+ Requires CD_DUMPDIR key in problem_data. -+ -+ Keyword arguments: -+ problem_data -- problem data of notified problems -+ -+ Returns None as it raises an exception on error -+ -+ Raises: -+ KeyError -- if any of required elements is missing -+ RuntimeError -- if event run fails -+ """ -+ -+ dir_name = problem_data.get(CD_DUMPDIR) -+ if dir_name is None: -+ raise KeyError(CD_DUMPDIR) -+ -+ log1("Running autoreporting event: '{0}'".format(event_name)) -+ -+ res = report.run_event_state() -+ ret = res.run_event_on_dir_name(dir_name[0], event_name) -+ -+ if res.children_count == 0 and ret == 0: -+ raise RuntimeError("No processing is specified for event '{0}'" -+ .format(event_name)) -+ -+ if not ret in [RETURN_OK, RETURN_CANCEL_BY_USER, RETURN_STOP_EVENT_RUN]: -+ raise RuntimeError("Event '{0}' exited with {1}" -+ .format(event_name, ret)) -+ - def emit_crash_dbus_signal(problem_data): - """Emits a Crash signal on D-Bus Problem bus - -@@ -132,15 +171,43 @@ def build_notification_problem_data(problem_dir): - if __name__ == "__main__": - CMDARGS = ArgumentParser( - description=("Announce a new or duplicated problem via" -- " all accessible channels")) -+ " all accessible channels"), -+ epilog=("Reads the default configuration from 'abrt.conf' file")) - CMDARGS.add_argument("-d", "--problem-dir", - type=str, required=True, - help="An absolute path to a new or duplicated problem directory") -+ CMDARGS.add_argument("-v", "--verbose", -+ action="count", dest="verbose", default=0, -+ help="Be verbose") -+ CMDARGS.add_argument("-a", "--autoreporting", -+ action="store_true", dest="autoreporting", default=False, -+ help="Force to run autoreporting event") -+ CMDARGS.add_argument("-e", "--autoreporting-event", -+ type=str, dest="autoreporting_event", -+ help="Overwrite autoreporting event name") - - OPTIONS = CMDARGS.parse_args() - - DIR_PATH = OPTIONS.problem_dir - -+ verbose = 0 -+ ABRT_VERBOSE = os.getenv("ABRT_VERBOSE") -+ if ABRT_VERBOSE: -+ try: -+ verbose = int(ABRT_VERBOSE) -+ except: -+ pass -+ -+ verbose += OPTIONS.verbose -+ set_verbosity(verbose) -+ os.environ["ABRT_VERBOSE"] = str(verbose) -+ -+ try: -+ conf = problem.load_conf_file("abrt.conf") -+ except OSError as ex: -+ sys.stderr.write("{0}".format(str(ex))) -+ sys.exit(RETURN_FAILURE) -+ - try: - PD = build_notification_problem_data(DIR_PATH) - except ValueError as ex: -@@ -160,5 +227,26 @@ if __name__ == "__main__": - .format(ex.message)) - sys.exit(RETURN_FAILURE) - -+ if OPTIONS.autoreporting or conf.get("AutoreportingEnabled", "no") == "yes": -+ event_name = OPTIONS.autoreporting_event -+ if not event_name: -+ if "AutoreportingEvent" in conf: -+ event_name = conf["AutoreportingEvent"] -+ else: -+ sys.stderr.write("Autoreporting event is not configured") -+ sys.stderr.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) - --- -1.8.3.1 - diff --git a/SOURCES/abrt-2.1.7-silent-post-report-event.patch b/SOURCES/abrt-2.1.7-silent-post-report-event.patch deleted file mode 100644 index f01a9cf..0000000 --- a/SOURCES/abrt-2.1.7-silent-post-report-event.patch +++ /dev/null @@ -1,75 +0,0 @@ -diff -ruN abrt-2.1.7.orig/src/plugins/ccpp_event.conf abrt-2.1.7.fix/src/plugins/ccpp_event.conf ---- abrt-2.1.7.orig/src/plugins/ccpp_event.conf 2013-11-19 10:35:56.408323626 +0100 -+++ abrt-2.1.7.fix/src/plugins/ccpp_event.conf 2013-11-20 13:50:34.259561517 +0100 -@@ -63,7 +63,6 @@ - - # Bugzilla requires nonempty duphash - EVENT=report_Bugzilla analyzer=CCpp duphash!= -- abrt-dedup-client - test -f component || abrt-action-save-package-data - component="`cat component`" - format="bugzilla_format.conf" -@@ -84,6 +83,7 @@ - # update ABRT database after successful report to bugzilla - EVENT=post_report analyzer=CCpp - reporter-ureport -r -+ exit 0 - - EVENT=analyze_CCpp analyzer=CCpp - abrt-action-perform-ccpp-analysis -@@ -93,4 +93,4 @@ - report-gtk -- "$DUMP_DIR" - - EVENT=report-cli analyzer=CCpp -- report-cli -e report_uReport -e analyze_CCpp -e report_Bugzilla -e post_report -- "$DUMP_DIR" -+ report-cli -e report_RHTSupport -- "$DUMP_DIR" -diff -ruN abrt-2.1.7.orig/src/plugins/koops_event.conf abrt-2.1.7.fix/src/plugins/koops_event.conf ---- abrt-2.1.7.orig/src/plugins/koops_event.conf 2013-11-19 10:35:56.423323627 +0100 -+++ abrt-2.1.7.fix/src/plugins/koops_event.conf 2013-11-20 13:50:47.798561826 +0100 -@@ -27,10 +27,11 @@ - # Update ABRT database after successful report to bugzilla - EVENT=post_report analyzer=Kerneloops - reporter-ureport -r -+ exit 0 - - # Automatic/simple GUI-based kernel oopses reporting will do this: - EVENT=report-gui analyzer=Kerneloops - report-gtk -- "$DUMP_DIR" - - EVENT=report-cli analyzer=Kerneloops -- report-cli -e report_uReport -e report_Bugzilla -e post_report -- "$DUMP_DIR" -+ report-cli -e report_RHTSupport -- "$DUMP_DIR" -diff -ruN abrt-2.1.7.orig/src/plugins/python_event.conf abrt-2.1.7.fix/src/plugins/python_event.conf ---- abrt-2.1.7.orig/src/plugins/python_event.conf 2013-11-19 10:35:56.419323627 +0100 -+++ abrt-2.1.7.fix/src/plugins/python_event.conf 2013-11-20 13:50:55.024561991 +0100 -@@ -22,10 +22,11 @@ - # update ABRT database after successful report to bugzilla - EVENT=post_report analyzer=Python - reporter-ureport -r -+ exit 0 - - # Reporting of python exceptions - EVENT=report-gui analyzer=Python component!=anaconda - report-gtk -- "$DUMP_DIR" - - EVENT=report-cli analyzer=Python component!=anaconda -- report-cli -e report_uReport -e report_Bugzilla -e post_report -- "$DUMP_DIR" -+ report-cli -e report_RHTSupport -- "$DUMP_DIR" -diff -ruN abrt-2.1.7.orig/src/plugins/vmcore_event.conf abrt-2.1.7.fix/src/plugins/vmcore_event.conf ---- abrt-2.1.7.orig/src/plugins/vmcore_event.conf 2013-11-19 10:35:56.423323627 +0100 -+++ abrt-2.1.7.fix/src/plugins/vmcore_event.conf 2013-11-20 13:51:21.135562587 +0100 -@@ -23,8 +23,13 @@ - EVENT=report_uReport analyzer=vmcore - /usr/libexec/abrt-action-ureport - -+# update ABRT database after successful report to bugzilla -+EVENT=post_report analyzer=Python -+ reporter-ureport -r -+ exit 0 -+ - EVENT=report-gui analyzer=vmcore - report-gtk -- "$DUMP_DIR" - - EVENT=report-cli analyzer=vmcore -- report-cli -e analyze_VMcore -e report_uReport -e report_Bugzilla -e post_report -- "$DUMP_DIR" -+ report-cli -e report_RHTSupport -- "$DUMP_DIR" diff --git a/SOURCES/disable_gpg_check.patch b/SOURCES/disable_gpg_check.patch deleted file mode 100644 index 6f471c2..0000000 --- a/SOURCES/disable_gpg_check.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- abrt-2.0.13/src/daemon/abrt-action-save-package-data.conf 2012-08-06 10:13:24.000000000 +0200 -+++ abrt-2.0.13_/src/daemon/abrt-action-save-package-data.conf 2012-09-21 16:20:19.943882773 +0200 -@@ -3,7 +3,7 @@ - # the list of public keys used to check the signature is - # in the file gpg_keys - # --OpenGPGCheck = yes -+OpenGPGCheck = no - - # Blacklisted packages - # diff --git a/SPECS/abrt.spec b/SPECS/abrt.spec index 88ddf25..d7be8b8 100644 --- a/SPECS/abrt.spec +++ b/SPECS/abrt.spec @@ -27,38 +27,65 @@ %define desktopvendor fedora %endif -%define libreport_ver 2.1.7-4 +%define libreport_ver 2.1.11-7 +%define satyr_ver 0.13-3 Summary: Automatic bug detection and reporting tool Name: abrt -Version: 2.1.7 -Release: 5%{?dist} +Version: 2.1.11 +Release: 12%{?dist} License: GPLv2+ Group: Applications/System URL: https://fedorahosted.org/abrt/ Source: https://fedorahosted.org/released/%{name}/%{name}-%{version}.tar.gz -# don't remove this patch, packages in rawhide are not signed! -Patch1: disable_gpg_check.patch -Patch3: abrt-2.1.6.rhel-dont_enable_shortened_reporting_in_gnome.patch -Patch5: abrt-2.1.7-no_fedoraproject_urls.patch -Patch6: abrt-2.1.7-enabled-autoreporting.patch -# also contains RHTSupport reporting patch which was accidentally removed -# in abrt-2.1.7-4 -Patch7: abrt-2.1.7-silent-post-report-event.patch -Patch8: abrt-2.1.7-enable-sosreport.patch - -# Remove with abrt > 2.1.7 -Patch11: abrt-2.1.7-replace_deprecated_polkit_functions.patch - -# Remove with abrt > 2.1.8 -Patch24: abrt-2.1.7-python_examples_removed_from_doc.patch - -# Remove with abrt > 2.1.9 -Patch29: abrt-2.1.7-don-t-consider-crashes-posted-to-ABRT-server-as-repo.patch -Patch59: abrt-2.1.7-factor-out-D-Bus-notification-to-a-python-script.patch -Patch69: abrt-2.1.7-Load-conf-from-usr-share-abrt-conf.d-and-etc-abrt.patch -Patch71: abrt-2.1.7-run-the-autoreporting-event-from-abrt-action-notify.patch -Patch72: abrt-2.1.7-move-the-notify-event-from-dbus_event.conf-to-abrt_e.patch + +Patch1: 0001-Do-not-enabled-Shortened-reporting-in-GNOME.patch +Patch2: 0002-remove-abrt-bodhi-from-configuration.patch +Patch3: 0003-replace-all-Fedora-URLs-by-corresponding-values-for-.patch +Patch4: 0004-have-AutoreportingEnabled-by-default.patch +Patch5: 0005-Enable-sosreport.patch +Patch6: 0006-post_report-always-exit-silenty.patch +Patch7: 0007-collect-installed-RPM-details-in-sosreport.patch +#Patch8: 0008-use-elfutils-stack-unwinder.patch +Patch9: 0009-fix-a-double-free-error-in-abrt-applet.patch +Patch10: 0010-vmcore-properly-configure-Augeas.patch +Patch11: 0011-applet-don-t-notify-missing-ignored_problems-file.patch +Patch12: 0012-configui-show-Close-button-in-the-dialog.patch +Patch13: 0013-applet-do-not-say-the-report-is-anonymous-when-urepo.patch +#Patch14: 0014-spec-abrt-cli-requires-a-pkg-providing-workflows.patch +#Patch15: 0015-testsuite-encourage-users-to-create-a-case-in-RHTS.patch +Patch16: 0016-cli-list-show-a-hint-about-creating-a-case-in-RHTS.patch +Patch17: 0017-harvest-vmcore-properly-handle-inaccessible-dir-erro.patch +Patch18: 0018-don-t-break-the-event-run-by-failures-of-abrt-action.patch +Patch19: 0019-Fix-handling-of-Machine-Check-Exceptions.patch +Patch20: 0020-move-MCE-handling-in-event-to-abrt-action-check-oops.patch +Patch21: 0021-abrt-action-check-oops-for-hw-error-i18n-add-error-c.patch +Patch22: 0022-Add-a-manpage-for-abrt-action-check-oops-for-hw-erro.patch +Patch23: 0023-oops-post-create-do-not-fail-the-event-if-check-oops.patch +Patch24: 0024-doc-MCE_readme.txt-new-file-documentation-about-MCE-.patch +Patch25: 0025-examples-mce2.test-an-example-of-non-fatal-MCE.patch +Patch26: 0026-MCE-cover-cases-where-kernel-version-isn-t-detected-.patch +Patch27: 0027-MCE-make-oops-and-vmcore-MCEs-a-bit-more-similar.patch +Patch28: 0028-python-install-modules-to-sitearch-directory.patch +#Patch29: 0029-spec-abrt-python-s-files-to-arch-specific-dir.patch +Patch30: 0030-retrace-client-stop-failing-on-SSL2.patch +#Patch31: 0031-add-transifex-configuration-for-RHEL7.patch +#Patch32: 0032-correct-rhel7-tx-configuration.patch +Patch33: 0033-upload-watch-remove-busy-wait-for-SIGUSR1.patch +Patch34: 0034-turn-off-Autoreporting.patch +#Patch35: 0035-make-dist-use-tar-ustar-due-to-long-filenames.patch +Patch36: 0036-never-search-for-MCE-strings-in-dmesg.patch +Patch37: 0037-sos-capture-all-necessary-data.patch +Patch38: 0038-stop-sending-ureports-from-abrt-applet.patch +Patch39: 0039-ccpp-run-vulnerability-analysis-in-analyze_LocalGDB.patch +Patch40: 0040-Translation-updates.patch +Patch41: 0041-Translation-updates.patch + + +# git is need for '%%autosetup -S git' which automatically applies all the +# patches above. Please, be aware that the patches must be generated +# by 'git format-patch' +BuildRequires: git BuildRequires: dbus-devel BuildRequires: gtk3-devel @@ -76,9 +103,12 @@ BuildRequires: asciidoc BuildRequires: doxygen BuildRequires: xmlto BuildRequires: libreport-devel >= %{libreport_ver} -BuildRequires: satyr-devel >= 0.9 +BuildRequires: satyr-devel >= %{satyr_ver} +BuildRequires: systemd-python +BuildRequires: augeas +Requires: abrt-python = %{version}-%{release} Requires: libreport >= %{libreport_ver} -Requires: satyr >= 0.9 +Requires: satyr >= %{satyr_ver} Requires: sos %if %{with systemd} @@ -88,7 +118,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs = %{version}-%{release} Requires(pre): shadow-utils Requires: python-dbus -Requires: libreport-plugin-ureport +Requires: libreport-plugin-ureport >= %{libreport_ver} + +# we used to have abrt-plugin-bodhi, but we have removed it +# and we want allow users to update abrt without necessity to +# to remove the obsoleted package: +Obsoletes: abrt-plugin-bodhi < 2.1.7-7 %description %{name} is a tool to help users to detect defects in applications and @@ -139,6 +174,7 @@ Provides: abrt-applet = %{version}-%{release} Obsoletes: abrt-applet < 0.0.5 Conflicts: abrt-applet < 0.0.5 Requires: abrt-libs = %{version}-%{release} +Requires: abrt-gui-libs = %{version}-%{release} %description gui GTK+ wizard for convenient bug reporting. @@ -155,6 +191,7 @@ Requires: %{name}-retrace-client %endif Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} +Requires: libreport-python %description addon-ccpp This package contains hook for C/C++ crashed programs and %{name}'s C/C++ @@ -199,6 +236,7 @@ Summary: %{name}'s Xorg addon Group: System Environment/Libraries Requires: curl Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} %description addon-xorg This package contains plugin for collecting Xorg crash information from Xorg @@ -211,6 +249,8 @@ Requires: %{name} = %{version}-%{release} Requires: abrt-addon-kerneloops Requires: crash Requires: kexec-tools +Requires: abrt-python = %{version}-%{release} +Requires: python-augeas %description addon-vmcore This package contains plugin for collecting kernel crash information from @@ -222,28 +262,18 @@ Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} Requires: abrt-libs = %{version}-%{release} Requires: abrt-addon-kerneloops -Obsoletes: abrt-addon-uefioops +Obsoletes: abrt-addon-uefioops < 2.1.7 %description addon-pstoreoops This package contains plugin for collecting kernel oopses from pstore storage. -%package plugin-bodhi -Summary: %{name}'s bodhi plugin -BuildRequires: json-c-devel -Group: System Environment/Libraries -Requires: %{name} = %{version}-%{release} -BuildRequires: libreport-web-devel >= %{libreport_ver} -Obsoletes: libreport-plugin-bodhi > 0.0.1 -Provides: libreport-plugin-bodhi - -%description plugin-bodhi -Search for a new updates in bodhi server. - %package addon-python Summary: %{name}'s addon for catching and analyzing Python exceptions Group: System Environment/Libraries Requires: python Requires: %{name} = %{version}-%{release} +Requires: systemd-python +Requires: abrt-python %description addon-python This package contains python hook and python analyzer plugin for handling @@ -272,10 +302,10 @@ Requires: abrt-addon-ccpp Requires: abrt-addon-python Requires: abrt-addon-xorg %if 0%{?rhel} +Requires: libreport-rhel >= %{libreport_ver} Requires: libreport-plugin-rhtsupport >= %{libreport_ver} %else Requires: abrt-retrace-client -Requires: abrt-plugin-bodhi Requires: libreport-plugin-bugzilla >= %{libreport_ver} Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} @@ -310,14 +340,13 @@ Requires: libreport-rhel >= %{libreport_ver} Requires: libreport-plugin-rhtsupport >= %{libreport_ver} %else Requires: abrt-retrace-client -Requires: abrt-plugin-bodhi Requires: libreport-plugin-bugzilla >= %{libreport_ver} Requires: libreport-plugin-logger >= %{libreport_ver} Requires: libreport-plugin-ureport >= %{libreport_ver} Requires: libreport-fedora >= %{libreport_ver} %endif #Requires: abrt-plugin-firefox -Provides: bug-buddy +Provides: bug-buddy = 2.28.0 %description desktop Virtual package to install all necessary packages for usage from desktop @@ -339,6 +368,7 @@ uses PolicyKit to authorize to access the problem data. Summary: ABRT Python API Group: System Environment/Libraries Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} Requires: pygobject2 BuildRequires: python-nose BuildRequires: python-sphinx @@ -369,28 +399,17 @@ A small script which prints a count of detected problems when someone logs in to the shell %prep -%setup -q -#RHEL -%if 0%{?rhel} >= 7 -%patch3 -p1 -b .shoretened -%patch5 -p1 -b .nofedora -%patch6 -p1 -b .autoreporting -%patch7 -p1 -b .silentpostreport -%patch8 -p1 -b .sosreport -%patch11 -p1 -%patch24 -p1 -%patch29 -p1 -%patch59 -p1 -%patch69 -p1 -%patch71 -p1 -%patch72 -p1 -%endif -#Fedora -%patch1 -p1 -b .gpgcheck +# http://www.rpm.org/wiki/PackagerDocs/Autosetup +# Default '__scm_apply_git' is 'git apply && git commit' but this workflow +# doesn't allow us to create a new file within a patch, so we have to use +# 'git am' (see /usr/lib/rpm/macros for more details) +%define __scm_apply_git(qp:m:) %{__git} am +%autosetup -S git %build autoconf -CFLAGS="%{optflags} -Werror" %configure --enable-doxygen-docs --disable-silent-rules +CFLAGS="%{optflags} -Werror" %configure --enable-doxygen-docs --disable-silent-rules \ + --without-bodhi --enable-native-unwinder --enable-suggest-autoreporting make %{?_smp_mflags} %install @@ -586,7 +605,7 @@ fi %posttrans # update the old problem dirs to contain "type" element -abrtdir=$(grep "DumpLocation" /etc/abrt/abrt.conf | cut -d'=' -f2 | tr -d ' '); cd $abrtdir 2>/dev/null && for i in `find . -name "analyzer" 2>/dev/null`; do len=${#i};cp "$i" "${i:0:$len-9}/type"; done; +abrtdir=$(grep "DumpLocation" /etc/abrt/abrt.conf | cut -d'=' -f2 | tr -d ' '); cd $abrtdir 2>/dev/null && for i in `find . -name "analyzer" 2>/dev/null`; do len=${#i};cp "$i" "${i:0:$len-9}/type"; done; for i in `find "$abrtdir" -mindepth 1 -maxdepth 1 -type d`; do chown `stat --format=%U:abrt $i` $i/*; done service abrtd condrestart >/dev/null 2>&1 || : %posttrans addon-ccpp @@ -594,10 +613,11 @@ service abrt-ccpp condrestart >/dev/null 2>&1 || : # Regenerate core_bactraces because of missing crash threads abrtdir=$(grep "DumpLocation" /etc/abrt/abrt.conf | cut -d'=' -f2 | tr -d ' ') if test -d "$abrtdir"; then - for DD in `find "$abrtdir" -maxdepth 1 -type d` + for DD in `find "$abrtdir" -mindepth 1 -maxdepth 1 -type d` do if test -f "$DD/analyzer" && grep -q "^CCpp$" "$DD/analyzer"; then - /usr/bin/abrt-action-generate-core-backtrace -d "$DD" -- >/dev/null 2>&1 + /usr/bin/abrt-action-generate-core-backtrace -d "$DD" -- >/dev/null 2>&1 || : + test -f "$DD/core_backtrace" && chown `stat --format=%U:abrt $DD` "$DD/core_backtrace" || : fi done fi @@ -610,6 +630,11 @@ service abrt-xorg condrestart >/dev/null 2>&1 || : %posttrans addon-vmcore service abrt-vmcore condrestart >/dev/null 2>&1 || : +# Copy the configuration file to plugin's directory +test -f /etc/abrt/abrt-harvest-vmcore.conf && { + mv -b /etc/abrt/abrt-harvest-vmcore.conf /etc/abrt/plugins/vmcore.conf +} +exit 0 %posttrans addon-pstoreoops service abrt-pstoreoops condrestart >/dev/null 2>&1 || : @@ -631,23 +656,28 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %endif %{_sbindir}/abrtd %{_sbindir}/abrt-server +%{_sbindir}/abrt-auto-reporting %{_libexecdir}/abrt-handle-event %{_libexecdir}/abrt-action-ureport %{_bindir}/abrt-handle-upload +%{_bindir}/abrt-action-notify %{_bindir}/abrt-action-save-package-data %{_bindir}/abrt-watch-log %{_bindir}/abrt-action-analyze-xorg -%{_bindir}/abrt-action-notify %config(noreplace) %{_sysconfdir}/%{name}/abrt.conf %{_datadir}/%{name}/conf.d/abrt.conf %config(noreplace) %{_sysconfdir}/%{name}/abrt-action-save-package-data.conf %{_datadir}/%{name}/conf.d/abrt-action-save-package-data.conf %config(noreplace) %{_sysconfdir}/%{name}/plugins/xorg.conf %{_datadir}/%{name}/conf.d/plugins/xorg.conf +%{_mandir}/man5/abrt-xorg.conf.5.gz %config(noreplace) %{_sysconfdir}/%{name}/gpg_keys.conf %{_datadir}/%{name}/conf.d/gpg_keys.conf +%{_mandir}/man5/gpg_keys.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/abrt_event.conf +%{_mandir}/man5/abrt_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/smart_event.conf +%{_mandir}/man5/smart_event.conf.5.gz %dir %attr(0755, abrt, abrt) %{_localstatedir}/tmp/%{name} %dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload # abrtd runs as root @@ -666,18 +696,23 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man1/abrt-watch-log.1.gz %{_mandir}/man1/abrt-action-analyze-xorg.1.gz %{_mandir}/man1/abrt-action-notify.1.gz +%{_mandir}/man1/abrt-auto-reporting.1.gz %{_mandir}/man8/abrtd.8.gz %{_mandir}/man5/abrt.conf.5.gz %{_mandir}/man5/abrt-action-save-package-data.conf.5.gz # {_mandir}/man5/pyhook.conf.5.gz +# filesystem package should own /usr/share/augeas/lenses directory +%{_datadir}/augeas/lenses/abrt.aug + %files libs %defattr(-,root,root,-) %{_libdir}/libabrt.so.* %files devel %defattr(-,root,root,-) -%doc apidoc/html/* +# The complex pattern below (instead of simlpy *) excludes Makefile{.am,.in}: +%doc apidoc/html/*.{html,png,css,js} %{_includedir}/abrt/abrt-dbus.h %{_includedir}/abrt/hooklib.h %{_includedir}/abrt/libabrt.h @@ -716,6 +751,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/CCpp.conf %{_datadir}/%{name}/conf.d/plugins/CCpp.conf +%{_mandir}/man5/abrt-CCpp.conf.5.gz %dir %attr(0775, abrt, abrt) %{_localstatedir}/cache/abrt-di %if %{with systemd} %{_unitdir}/abrt-ccpp.service @@ -735,12 +771,14 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_bindir}/abrt-action-analyze-backtrace %{_bindir}/abrt-action-list-dsos %{_bindir}/abrt-action-perform-ccpp-analysis -%{_bindir}/abrt-dedup-client %{_bindir}/abrt-action-analyze-ccpp-local %{_sbindir}/abrt-install-ccpp-hook %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_event.conf +%{_mandir}/man5/ccpp_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/gconf_event.conf +%{_mandir}/man5/gconf_event.conf.5.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/vimrc_event.conf +%{_mandir}/man5/vimrc_event.conf.5.gz %{_datadir}/libreport/events/analyze_CCpp.xml %{_datadir}/libreport/events/analyze_LocalGDB.xml %{_datadir}/libreport/events/collect_xsession_errors.xml @@ -760,7 +798,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_mandir}/man*/abrt-action-analyze-core.* %{_mandir}/man*/abrt-action-analyze-vulnerability.* %{_mandir}/man*/abrt-action-perform-ccpp-analysis.* -%{_mandir}/man*/abrt-dedup-client.* %files addon-upload-watch %defattr(-,root,root,-) @@ -772,15 +809,18 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %endif %{_mandir}/man*/abrt-upload-watch.* + %files retrace-client %{_bindir}/abrt-retrace-client %{_mandir}/man1/abrt-retrace-client.1.gz %config(noreplace) %{_sysconfdir}/libreport/events.d/ccpp_retrace_event.conf +%{_mandir}/man5/ccpp_retrace_event.conf.5.gz %{_datadir}/libreport/events/analyze_RetraceServer.xml %files addon-kerneloops %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/koops_event.conf +%{_mandir}/man5/koops_event.conf.5.gz %if %{with systemd} %{_unitdir}/abrt-oops.service %else @@ -796,6 +836,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files addon-xorg %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/xorg_event.conf +%{_mandir}/man5/xorg_event.conf.5.gz %if %{with systemd} %{_unitdir}/abrt-xorg.service %else @@ -807,7 +848,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files addon-vmcore %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.conf -%config(noreplace) %{_sysconfdir}/%{name}/abrt-harvest-vmcore.conf +%{_mandir}/man5/vmcore_event.conf.5.gz +%config(noreplace) %{_sysconfdir}/%{name}/plugins/vmcore.conf +%{_datadir}/%{name}/conf.d/plugins/vmcore.conf %{_datadir}/libreport/events/analyze_VMcore.xml %if %{with systemd} %{_unitdir}/abrt-vmcore.service @@ -816,8 +859,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %endif %{_sbindir}/abrt-harvest-vmcore %{_bindir}/abrt-action-analyze-vmcore +%{_bindir}/abrt-action-check-oops-for-hw-error %{_mandir}/man1/abrt-harvest-vmcore.1* +%{_mandir}/man5/abrt-vmcore.conf.5* %{_mandir}/man1/abrt-action-analyze-vmcore.1* +%{_mandir}/man1/abrt-action-check-oops-for-hw-error.1* %files addon-pstoreoops %defattr(-,root,root,-) @@ -835,8 +881,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %defattr(-,root,root,-) %config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf %{_datadir}/%{name}/conf.d/plugins/python.conf -# TODO? Do we need %config(noreplace) in the below line too? +%{_mandir}/man5/abrt-python.conf.5.gz +# TODO? Do we need %%config(noreplace) in the below line too? %config(noreplace) %{_sysconfdir}/libreport/events.d/python_event.conf +%{_mandir}/man5/python_event.conf.5.gz %{_bindir}/abrt-action-analyze-python %{_mandir}/man1/abrt-action-analyze-python.1* %{python_sitearch}/abrt*.py* @@ -853,18 +901,22 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %files desktop %defattr(-,root,root,-) -%files plugin-bodhi -%defattr(-,root,root,-) -%{_bindir}/abrt-bodhi -%{_mandir}/man1/abrt-bodhi.1.gz - %files dbus %defattr(-,root,root,-) %{_sbindir}/abrt-dbus +%{_sbindir}/abrt-configuration %{_mandir}/man8/abrt-dbus.8.gz +%{_mandir}/man8/abrt-configuration.8.gz %config(noreplace) %{_sysconfdir}/dbus-1/system.d/dbus-abrt.conf %{_datadir}/dbus-1/interfaces/org.freedesktop.Problems.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.abrt.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ccpp.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.python.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.vmcore.xml +%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.xorg.xml %{_datadir}/dbus-1/system-services/org.freedesktop.problems.service +%{_datadir}/dbus-1/system-services/com.redhat.problems.configuration.service %{_datadir}/polkit-1/actions/abrt_polkit.policy %dir %{_defaultdocdir}/%{name}-dbus-%{version}/ %dir %{_defaultdocdir}/%{name}-dbus-%{version}/html/ @@ -872,7 +924,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %{_defaultdocdir}/%{name}-dbus-%{version}/html/*.css %files python -%{python_sitelib}/problem/ +%{python_sitearch}/problem/ %{_mandir}/man5/abrt-python.5.gz %files python-doc @@ -882,6 +934,91 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh %changelog +* Mon Mar 03 2014 Jakub Filak - 2.1.11-12 +- Translation updates +- Resolves: #1030314 + +* Wed Feb 26 2014 Jakub Filak - 2.1.11-11 +- Capture all necessary logs in sosreport.tar.gz +- do not send ureport from abrt-applet +- do not run gdb under root +- Resolves: #1067114, #1069278, #1069719 + +* Wed Feb 19 2014 Jakub Filak - 2.1.11-10 +- Search for MCE strings in 'backtrace' file +- Resolves: #1064458 + +* Mon Feb 10 2014 Jakub Filak - 2.1.11-9 +- Stop consuming 100%%CPU in abrt-upload-watch +- Turn off Autoreporting +- Enabled GPG check +- Resolves: #1051480, #1063317 + +* Tue Feb 04 2014 Jakub Filak - 2.1.11-8 +- retrace-client: do not require SSL2 +- Resolves: #1060796 + +* Thu Jan 30 2014 Jakub Filak - 2.1.11-7 +- Fix-handling-of-Machine-Check-Exceptions +- abrt-harvest-vmcore recovers from Permission denied errors +- never stop 'notify' event +- install abrt-python files to arch specific dir +- Resolves: #1032077, #1032511, #1057710 +- Related: #881123 + +* Tue Jan 28 2014 Daniel Mach - 2.1.11-6 +- Mass rebuild 2014-01-24 + +* Thu Jan 23 2014 Jakub Filak 2.1.11-5 +- abrt-cli requires libreport-rhel (the reporting workflows) +- applet: don't notify missing ignored_problems file +- abrt-cli: show a hint about creating a case in RHTS +- abrt-cli: show a info text suggesting enabling the autoreporting +- Related: #1044424 +- Resolves: #1054291, #1055565, #1056980 + +* Wed Jan 22 2014 Jakub Filak 2.1.11-4 +- applet: do not say the report is anonymous when ureport auth is enabled +- Resolves: #1055619 + +* Tue Jan 21 2014 Jakub Filak 2.1.11-3 +- fix a double free error in abrt-applet +- configure Augeas to parse only required files +- show 'Close' button in the Configuration dialogue +- Resolves: #1050167, #1053534, #1054158 + +* Tue Jan 14 2014 Jakub Filak 2.1.11-2 +- use elfutils stack unwinder +- collect installed RPM details in sosreport +- Resolves: #1048210, #1052920 + +* Wed Jan 08 2014 Jakub Filak 2.1.11-1 +- Update translations +- harvest_vmcore: replace regexp config parsing with augeas +- introduce D-Bus Configuration Service +- mark koopses with unsupporeted HW as not-reportable +- bodhi: use the right exit codes +- abrt-handle-event: don't use already freed memory +- introduce abrt-auto-reporting utility +- abrt-action-notify: fix couple of flaws +- Use satyr to compute koops duphash +- koops: tweak koops parser for s390 Call Traces +- configui: do not use deprecated gtk3 API +- completely remove abrt-dedup-client +- move /etc/abrt/abrt-harvest-vmcore.conf to /etc/abrt/plugins/vmcore.conf +- Resolves: #1027259, #1035405, #1036585, #1040892, #1044424, #1050160 + +* Fri Dec 27 2013 Daniel Mach - 2.1.7-8 +- Mass rebuild 2013-12-27 + +* Fri Dec 06 2013 Jakub Filak 2.1.7-7 +- Remove the bodhi addon +- Resolves: #1038923 + +* Tue Dec 03 2013 Jakub Filak 2.1.7-6 +- Add a dependency on abrt-python +- Resolves: #1037290 + * Wed Nov 20 2013 Jakub Filak 2.1.7-5 - Enabled sosreport - Resolves: #1032585